HomeSort by relevance Sort by last modified time
    Searched defs:TransportSecurityState (Results 1 - 2 of 2) 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...]

Completed in 216 milliseconds