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 // This class gathers state related to a single user profile. | 5 // This class gathers state related to a single user profile. |
6 | 6 |
7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 content::ProtocolHandlerMap* protocol_handlers, | 135 content::ProtocolHandlerMap* protocol_handlers, |
136 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; | 136 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; |
137 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 137 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
138 const base::FilePath& partition_path, | 138 const base::FilePath& partition_path, |
139 bool in_memory, | 139 bool in_memory, |
140 content::ProtocolHandlerMap* protocol_handlers, | 140 content::ProtocolHandlerMap* protocol_handlers, |
141 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; | 141 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE; |
142 virtual base::FilePath last_selected_directory() OVERRIDE; | 142 virtual base::FilePath last_selected_directory() OVERRIDE; |
143 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; | 143 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; |
144 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 144 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| 145 virtual DevToolsNetworkController* GetDevToolsNetworkController() OVERRIDE; |
145 virtual void ClearNetworkingHistorySince( | 146 virtual void ClearNetworkingHistorySince( |
146 base::Time time, | 147 base::Time time, |
147 const base::Closure& completion) OVERRIDE; | 148 const base::Closure& completion) OVERRIDE; |
148 virtual void ClearDomainReliabilityMonitor( | 149 virtual void ClearDomainReliabilityMonitor( |
149 domain_reliability::DomainReliabilityClearMode mode, | 150 domain_reliability::DomainReliabilityClearMode mode, |
150 const base::Closure& completion) OVERRIDE; | 151 const base::Closure& completion) OVERRIDE; |
151 virtual GURL GetHomePage() OVERRIDE; | 152 virtual GURL GetHomePage() OVERRIDE; |
152 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; | 153 virtual bool WasCreatedByVersionOrLater(const std::string& version) OVERRIDE; |
153 virtual void SetExitType(ExitType exit_type) OVERRIDE; | 154 virtual void SetExitType(ExitType exit_type) OVERRIDE; |
154 virtual ExitType GetLastSessionExitType() OVERRIDE; | 155 virtual ExitType GetLastSessionExitType() OVERRIDE; |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 // components/keyed_service/content/browser_context_keyed_service_factory.* | 302 // components/keyed_service/content/browser_context_keyed_service_factory.* |
302 | 303 |
303 Profile::Delegate* delegate_; | 304 Profile::Delegate* delegate_; |
304 | 305 |
305 chrome_browser_net::Predictor* predictor_; | 306 chrome_browser_net::Predictor* predictor_; |
306 | 307 |
307 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 308 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
308 }; | 309 }; |
309 | 310 |
310 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 311 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |