| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 virtual void ChangeAppLocale(const std::string& locale, | 123 virtual void ChangeAppLocale(const std::string& locale, |
| 124 AppLocaleChangedVia) OVERRIDE; | 124 AppLocaleChangedVia) OVERRIDE; |
| 125 virtual void OnLogin() OVERRIDE; | 125 virtual void OnLogin() OVERRIDE; |
| 126 #endif // defined(OS_CHROMEOS) | 126 #endif // defined(OS_CHROMEOS) |
| 127 | 127 |
| 128 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; | 128 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
| 129 | 129 |
| 130 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 130 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| 131 virtual void ClearNetworkingHistorySince(base::Time time) OVERRIDE; | 131 virtual void ClearNetworkingHistorySince(base::Time time) OVERRIDE; |
| 132 virtual GURL GetHomePage() OVERRIDE; | 132 virtual GURL GetHomePage() OVERRIDE; |
| 133 virtual NetworkActionPredictor* GetNetworkActionPredictor() OVERRIDE; | |
| 134 | 133 |
| 135 // content::NotificationObserver implementation. | 134 // content::NotificationObserver implementation. |
| 136 virtual void Observe(int type, | 135 virtual void Observe(int type, |
| 137 const content::NotificationSource& source, | 136 const content::NotificationSource& source, |
| 138 const content::NotificationDetails& details) OVERRIDE; | 137 const content::NotificationDetails& details) OVERRIDE; |
| 139 | 138 |
| 140 private: | 139 private: |
| 141 void CreateQuotaManagerAndClients(); | 140 void CreateQuotaManagerAndClients(); |
| 142 | 141 |
| 143 content::NotificationRegistrar registrar_; | 142 content::NotificationRegistrar registrar_; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 190 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 192 | 191 |
| 193 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 192 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 194 | 193 |
| 195 scoped_refptr<quota::QuotaManager> quota_manager_; | 194 scoped_refptr<quota::QuotaManager> quota_manager_; |
| 196 | 195 |
| 197 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 196 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 198 }; | 197 }; |
| 199 | 198 |
| 200 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 199 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
| OLD | NEW |