| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 104 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 105 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; | 105 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
| 106 virtual bool IsSameProfile(Profile* profile) OVERRIDE; | 106 virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
| 107 virtual base::Time GetStartTime() const OVERRIDE; | 107 virtual base::Time GetStartTime() const OVERRIDE; |
| 108 virtual net::URLRequestContextGetter* CreateRequestContext( | 108 virtual net::URLRequestContextGetter* CreateRequestContext( |
| 109 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 109 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 110 blob_protocol_handler, | 110 blob_protocol_handler, |
| 111 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 111 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 112 file_system_protocol_handler, | 112 file_system_protocol_handler, |
| 113 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 113 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 114 developer_protocol_handler, | |
| 115 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | |
| 116 chrome_protocol_handler, | 114 chrome_protocol_handler, |
| 117 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 115 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 118 chrome_devtools_protocol_handler) OVERRIDE; | 116 chrome_devtools_protocol_handler) OVERRIDE; |
| 119 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 117 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 120 const base::FilePath& partition_path, | 118 const base::FilePath& partition_path, |
| 121 bool in_memory, | 119 bool in_memory, |
| 122 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 120 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 123 blob_protocol_handler, | 121 blob_protocol_handler, |
| 124 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 122 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 125 file_system_protocol_handler, | 123 file_system_protocol_handler, |
| 126 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 124 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 127 developer_protocol_handler, | |
| 128 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | |
| 129 chrome_protocol_handler, | 125 chrome_protocol_handler, |
| 130 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 126 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 131 chrome_devtools_protocol_handler) OVERRIDE; | 127 chrome_devtools_protocol_handler) OVERRIDE; |
| 132 virtual base::FilePath last_selected_directory() OVERRIDE; | 128 virtual base::FilePath last_selected_directory() OVERRIDE; |
| 133 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; | 129 virtual void set_last_selected_directory(const base::FilePath& path) OVERRIDE; |
| 134 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 130 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
| 135 virtual void ClearNetworkingHistorySince( | 131 virtual void ClearNetworkingHistorySince( |
| 136 base::Time time, | 132 base::Time time, |
| 137 const base::Closure& completion) OVERRIDE; | 133 const base::Closure& completion) OVERRIDE; |
| 138 virtual GURL GetHomePage() OVERRIDE; | 134 virtual GURL GetHomePage() OVERRIDE; |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} | 280 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} |
| 285 | 281 |
| 286 Profile::Delegate* delegate_; | 282 Profile::Delegate* delegate_; |
| 287 | 283 |
| 288 chrome_browser_net::Predictor* predictor_; | 284 chrome_browser_net::Predictor* predictor_; |
| 289 | 285 |
| 290 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 286 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 291 }; | 287 }; |
| 292 | 288 |
| 293 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 289 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |