OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 virtual PromoCounter* GetInstantPromoCounter() OVERRIDE; | 121 virtual PromoCounter* GetInstantPromoCounter() OVERRIDE; |
122 | 122 |
123 #if defined(OS_CHROMEOS) | 123 #if defined(OS_CHROMEOS) |
124 virtual void ChangeAppLocale(const std::string& locale, | 124 virtual void ChangeAppLocale(const std::string& locale, |
125 AppLocaleChangedVia) OVERRIDE; | 125 AppLocaleChangedVia) OVERRIDE; |
126 virtual void OnLogin() OVERRIDE; | 126 virtual void OnLogin() OVERRIDE; |
127 #endif // defined(OS_CHROMEOS) | 127 #endif // defined(OS_CHROMEOS) |
128 | 128 |
129 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; | 129 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
130 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 130 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
131 virtual void DeleteTransportSecurityStateSince(base::Time time) OVERRIDE; | 131 virtual void ClearNetworkingHistorySince(base::Time time) OVERRIDE; |
132 | 132 |
133 // NotificationObserver implementation. | 133 // NotificationObserver implementation. |
134 virtual void Observe(int type, | 134 virtual void Observe(int type, |
135 const NotificationSource& source, | 135 const NotificationSource& source, |
136 const NotificationDetails& details) OVERRIDE; | 136 const NotificationDetails& details) OVERRIDE; |
137 | 137 |
138 private: | 138 private: |
139 virtual void SetDownloadManagerDelegate( | 139 virtual void SetDownloadManagerDelegate( |
140 ChromeDownloadManagerDelegate* delegate) OVERRIDE; | 140 ChromeDownloadManagerDelegate* delegate) OVERRIDE; |
141 | 141 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 197 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
198 | 198 |
199 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 199 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
200 | 200 |
201 scoped_refptr<quota::QuotaManager> quota_manager_; | 201 scoped_refptr<quota::QuotaManager> quota_manager_; |
202 | 202 |
203 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 203 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
204 }; | 204 }; |
205 | 205 |
206 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 206 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
OLD | NEW |