| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 content::ProtocolHandlerMap* protocol_handlers, | 123 content::ProtocolHandlerMap* protocol_handlers, |
| 124 content::URLRequestInterceptorScopedVector request_interceptors) override; | 124 content::URLRequestInterceptorScopedVector request_interceptors) override; |
| 125 base::FilePath last_selected_directory() override; | 125 base::FilePath last_selected_directory() override; |
| 126 void set_last_selected_directory(const base::FilePath& path) override; | 126 void set_last_selected_directory(const base::FilePath& path) override; |
| 127 chrome_browser_net::Predictor* GetNetworkPredictor() override; | 127 chrome_browser_net::Predictor* GetNetworkPredictor() override; |
| 128 DevToolsNetworkControllerHandle* GetDevToolsNetworkControllerHandle() | 128 DevToolsNetworkControllerHandle* GetDevToolsNetworkControllerHandle() |
| 129 override; | 129 override; |
| 130 void ClearNetworkingHistorySince(base::Time time, | 130 void ClearNetworkingHistorySince(base::Time time, |
| 131 const base::Closure& completion) override; | 131 const base::Closure& completion) override; |
| 132 GURL GetHomePage() override; | 132 GURL GetHomePage() override; |
| 133 GURL ShowingGoodiesPageInNewWindow() override; |
| 133 bool WasCreatedByVersionOrLater(const std::string& version) override; | 134 bool WasCreatedByVersionOrLater(const std::string& version) override; |
| 134 void SetExitType(ExitType exit_type) override; | 135 void SetExitType(ExitType exit_type) override; |
| 135 ExitType GetLastSessionExitType() override; | 136 ExitType GetLastSessionExitType() override; |
| 136 | 137 |
| 137 #if defined(OS_CHROMEOS) | 138 #if defined(OS_CHROMEOS) |
| 138 void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia) override; | 139 void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia) override; |
| 139 void OnLogin() override; | 140 void OnLogin() override; |
| 140 void InitChromeOSPreferences() override; | 141 void InitChromeOSPreferences() override; |
| 141 #endif // defined(OS_CHROMEOS) | 142 #endif // defined(OS_CHROMEOS) |
| 142 | 143 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 // components/keyed_service/content/browser_context_keyed_service_factory.* | 273 // components/keyed_service/content/browser_context_keyed_service_factory.* |
| 273 | 274 |
| 274 Profile::Delegate* delegate_; | 275 Profile::Delegate* delegate_; |
| 275 | 276 |
| 276 chrome_browser_net::Predictor* predictor_; | 277 chrome_browser_net::Predictor* predictor_; |
| 277 | 278 |
| 278 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 279 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 279 }; | 280 }; |
| 280 | 281 |
| 281 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 282 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |