Searched defs:TransportSecurityState (Results 1 - 2 of 2) sorted by relevance

/external/chromium/net/base/
H A Dtransport_security_state.h21 // TransportSecurityState
26 class TransportSecurityState : class in namespace:net
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);
H A Dtransport_security_state.cc27 const long int TransportSecurityState::kMaxHSTSAgeSecs = 86400 * 365; // 1 year
29 TransportSecurityState::TransportSecurityState() function in class:net::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
[all...]

Completed in 149 milliseconds