HomeSort by relevance Sort by last modified time
    Searched defs:TransportSecurityState (Results 1 - 4 of 4) sorted by null

  /external/chromium/net/base/
transport_security_state.h 21 // TransportSecurityState
26 class TransportSecurityState :
27 public base::RefCountedThreadSafe<TransportSecurityState> {
29 TransportSecurityState();
99 // Thus it must not reenter the TransportSecurityState object.
100 virtual void StateIsDirty(TransportSecurityState* state) = 0;
117 friend class base::RefCountedThreadSafe<TransportSecurityState>;
120 ~TransportSecurityState();
142 DISALLOW_COPY_AND_ASSIGN(TransportSecurityState);
transport_security_state.cc 27 const long int TransportSecurityState::kMaxHSTSAgeSecs = 86400 * 365; // 1 year
29 TransportSecurityState::TransportSecurityState()
39 void TransportSecurityState::EnableHost(const std::string& host,
66 bool TransportSecurityState::DeleteHost(const std::string& host) {
87 bool TransportSecurityState::IsEnabledForHost(DomainState* result,
130 void TransportSecurityState::DeleteSince(const base::Time& time) {
159 if (i > TransportSecurityState::kMaxHSTSAgeSecs)
160 i = TransportSecurityState::kMaxHSTSAgeSecs;
167 bool TransportSecurityState::ParseHeader(const std::string& value
    [all...]
  /external/chromium_org/net/http/
transport_security_state.h 35 class NET_EXPORT TransportSecurityState
41 // Thus it must not reenter the TransportSecurityState object.
42 virtual void StateIsDirty(TransportSecurityState* state) = 0;
48 TransportSecurityState();
49 ~TransportSecurityState();
146 explicit Iterator(const TransportSecurityState& state);
163 // TransportSecurityState.
171 // TransportSecurityState.
178 // TransportSecurityState.
323 DISALLOW_COPY_AND_ASSIGN(TransportSecurityState);
    [all...]
transport_security_state.cc 86 TransportSecurityState::TransportSecurityState()
91 TransportSecurityState::Iterator::Iterator(const TransportSecurityState& state)
96 TransportSecurityState::Iterator::~Iterator() {}
98 void TransportSecurityState::SetDelegate(
99 TransportSecurityState::Delegate* delegate) {
104 void TransportSecurityState::EnableHost(const std::string& host,
121 bool TransportSecurityState::DeleteDynamicDataForHost(const std::string& host) {
138 bool TransportSecurityState::GetDomainState(const std::string& host
    [all...]

Completed in 81 milliseconds