OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 #if defined(OS_CHROMEOS) | 73 #if defined(OS_CHROMEOS) |
74 virtual void ChangeAppLocale(const std::string& locale, | 74 virtual void ChangeAppLocale(const std::string& locale, |
75 AppLocaleChangedVia) OVERRIDE; | 75 AppLocaleChangedVia) OVERRIDE; |
76 virtual void OnLogin() OVERRIDE; | 76 virtual void OnLogin() OVERRIDE; |
77 virtual void InitChromeOSPreferences() OVERRIDE; | 77 virtual void InitChromeOSPreferences() OVERRIDE; |
78 #endif // defined(OS_CHROMEOS) | 78 #endif // defined(OS_CHROMEOS) |
79 | 79 |
80 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; | 80 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
81 | 81 |
82 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 82 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| 83 virtual DevToolsNetworkController* GetDevToolsNetworkController() OVERRIDE; |
83 virtual void ClearNetworkingHistorySince( | 84 virtual void ClearNetworkingHistorySince( |
84 base::Time time, | 85 base::Time time, |
85 const base::Closure& completion) OVERRIDE; | 86 const base::Closure& completion) OVERRIDE; |
86 virtual void ClearDomainReliabilityMonitor( | 87 virtual void ClearDomainReliabilityMonitor( |
87 domain_reliability::DomainReliabilityClearMode mode, | 88 domain_reliability::DomainReliabilityClearMode mode, |
88 const base::Closure& completion) OVERRIDE; | 89 const base::Closure& completion) OVERRIDE; |
89 virtual GURL GetHomePage() OVERRIDE; | 90 virtual GURL GetHomePage() OVERRIDE; |
90 | 91 |
91 // content::BrowserContext implementation: | 92 // content::BrowserContext implementation: |
92 virtual base::FilePath GetPath() const OVERRIDE; | 93 virtual base::FilePath GetPath() const OVERRIDE; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 base::FilePath last_selected_directory_; | 161 base::FilePath last_selected_directory_; |
161 | 162 |
162 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 163 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
163 | 164 |
164 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; | 165 scoped_ptr<content::HostZoomMap::Subscription> zoom_subscription_; |
165 | 166 |
166 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 167 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
167 }; | 168 }; |
168 | 169 |
169 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ | 170 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IMPL_H_ |
OLD | NEW |