Chromium Code Reviews| Index: chrome/browser/profiles/off_the_record_profile_impl.h |
| diff --git a/chrome/browser/profiles/off_the_record_profile_impl.h b/chrome/browser/profiles/off_the_record_profile_impl.h |
| index 3a79dbd3a36b9a2f867fbfe5a79a3ef5879a9d62..83a6b6b501c40a6f90b9147b60a64dfdce07d51a 100644 |
| --- a/chrome/browser/profiles/off_the_record_profile_impl.h |
| +++ b/chrome/browser/profiles/off_the_record_profile_impl.h |
| @@ -54,7 +54,6 @@ class OffTheRecordProfileImpl : public Profile, |
| virtual ExtensionSpecialStoragePolicy* |
| GetExtensionSpecialStoragePolicy() OVERRIDE; |
| virtual SSLHostState* GetSSLHostState() OVERRIDE; |
| - virtual net::TransportSecurityState* GetTransportSecurityState() OVERRIDE; |
| virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; |
| virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; |
| virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; |
| @@ -131,6 +130,8 @@ class OffTheRecordProfileImpl : public Profile, |
| virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
| virtual prerender::PrerenderManager* GetPrerenderManager() OVERRIDE; |
| virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| + virtual void DeleteTransportSecurityStateSince( |
| + const base::Time& time) OVERRIDE; |
|
willchan no longer on Chromium
2011/09/20 19:09:04
btw, Time is an int64 so passing by reference does
Paweł Hajdan Jr.
2011/09/21 17:59:19
Done. I didn't know.
|
| // NotificationObserver implementation. |
| virtual void Observe(int type, |
| @@ -180,10 +181,6 @@ class OffTheRecordProfileImpl : public Profile, |
| // profile. |
| scoped_ptr<FindBarState> find_bar_state_; |
| - // The TransportSecurityState that only stores enabled sites in memory. |
| - scoped_refptr<net::TransportSecurityState> |
| - transport_security_state_; |
| - |
| // Time we were started. |
| Time start_time_; |
| @@ -206,9 +203,6 @@ class OffTheRecordProfileImpl : public Profile, |
| scoped_refptr<quota::QuotaManager> quota_manager_; |
| - // Used read-only. |
| - scoped_refptr<TransportSecurityPersister> transport_security_loader_; |
| - |
| DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| }; |