| 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_TEST_BASE_TESTING_PROFILE_H_ | 5 #ifndef CHROME_TEST_BASE_TESTING_PROFILE_H_ |
| 6 #define CHROME_TEST_BASE_TESTING_PROFILE_H_ | 6 #define CHROME_TEST_BASE_TESTING_PROFILE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 GetDownloadManagerDelegate() OVERRIDE; | 178 GetDownloadManagerDelegate() OVERRIDE; |
| 179 // Returns a testing ContextGetter (if one has been created via | 179 // Returns a testing ContextGetter (if one has been created via |
| 180 // CreateRequestContext) or NULL. This is not done on-demand for two reasons: | 180 // CreateRequestContext) or NULL. This is not done on-demand for two reasons: |
| 181 // (1) Some tests depend on GetRequestContext() returning NULL. (2) Because | 181 // (1) Some tests depend on GetRequestContext() returning NULL. (2) Because |
| 182 // of the special memory management considerations for the | 182 // of the special memory management considerations for the |
| 183 // TestURLRequestContextGetter class, many tests would find themseleves | 183 // TestURLRequestContextGetter class, many tests would find themseleves |
| 184 // leaking if they called this method without the necessary IO thread. This | 184 // leaking if they called this method without the necessary IO thread. This |
| 185 // getter is currently only capable of returning a Context that helps test | 185 // getter is currently only capable of returning a Context that helps test |
| 186 // the CookieMonster. See implementation comments for more details. | 186 // the CookieMonster. See implementation comments for more details. |
| 187 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; | 187 virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
| 188 virtual net::URLRequestContextGetter* CreateRequestContext( |
| 189 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 190 blob_protocol_handler, |
| 191 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 192 file_system_protocol_handler, |
| 193 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 194 developer_protocol_handler, |
| 195 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 196 chrome_protocol_handler, |
| 197 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 198 chrome_devtools_protocol_handler) OVERRIDE; |
| 188 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( | 199 virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
| 189 int renderer_child_id) OVERRIDE; | 200 int renderer_child_id) OVERRIDE; |
| 190 virtual content::ResourceContext* GetResourceContext() OVERRIDE; | 201 virtual content::ResourceContext* GetResourceContext() OVERRIDE; |
| 191 virtual content::GeolocationPermissionContext* | 202 virtual content::GeolocationPermissionContext* |
| 192 GetGeolocationPermissionContext() OVERRIDE; | 203 GetGeolocationPermissionContext() OVERRIDE; |
| 193 virtual content::SpeechRecognitionPreferences* | 204 virtual content::SpeechRecognitionPreferences* |
| 194 GetSpeechRecognitionPreferences() OVERRIDE; | 205 GetSpeechRecognitionPreferences() OVERRIDE; |
| 195 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 206 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
| 196 | 207 |
| 197 virtual TestingProfile* AsTestingProfile() OVERRIDE; | 208 virtual TestingProfile* AsTestingProfile() OVERRIDE; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 | 243 |
| 233 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; | 244 virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |
| 234 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 245 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
| 235 int renderer_child_id) OVERRIDE; | 246 int renderer_child_id) OVERRIDE; |
| 236 virtual net::URLRequestContextGetter* | 247 virtual net::URLRequestContextGetter* |
| 237 GetRequestContextForExtensions() OVERRIDE; | 248 GetRequestContextForExtensions() OVERRIDE; |
| 238 virtual net::URLRequestContextGetter* | 249 virtual net::URLRequestContextGetter* |
| 239 GetMediaRequestContextForStoragePartition( | 250 GetMediaRequestContextForStoragePartition( |
| 240 const FilePath& partition_path, | 251 const FilePath& partition_path, |
| 241 bool in_memory) OVERRIDE; | 252 bool in_memory) OVERRIDE; |
| 242 virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition( | 253 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 243 const FilePath& partition_path, | 254 const FilePath& partition_path, |
| 244 bool in_memory) OVERRIDE; | 255 bool in_memory, |
| 256 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 257 blob_protocol_handler, |
| 258 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 259 file_system_protocol_handler, |
| 260 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 261 developer_protocol_handler, |
| 262 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 263 chrome_protocol_handler, |
| 264 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 265 chrome_devtools_protocol_handler) OVERRIDE; |
| 245 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 266 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| 246 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 267 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 247 virtual std::wstring GetName(); | 268 virtual std::wstring GetName(); |
| 248 virtual void SetName(const std::wstring& name) {} | 269 virtual void SetName(const std::wstring& name) {} |
| 249 virtual std::wstring GetID(); | 270 virtual std::wstring GetID(); |
| 250 virtual void SetID(const std::wstring& id); | 271 virtual void SetID(const std::wstring& id); |
| 251 void set_last_session_exited_cleanly(bool value) { | 272 void set_last_session_exited_cleanly(bool value) { |
| 252 last_session_exited_cleanly_ = value; | 273 last_session_exited_cleanly_ = value; |
| 253 } | 274 } |
| 254 virtual void MergeResourceString(int message_id, | 275 virtual void MergeResourceString(int message_id, |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 // testing. | 371 // testing. |
| 351 ProfileDependencyManager* profile_dependency_manager_; | 372 ProfileDependencyManager* profile_dependency_manager_; |
| 352 | 373 |
| 353 scoped_ptr<content::MockResourceContext> resource_context_; | 374 scoped_ptr<content::MockResourceContext> resource_context_; |
| 354 | 375 |
| 355 // Weak pointer to a delegate for indicating that a profile was created. | 376 // Weak pointer to a delegate for indicating that a profile was created. |
| 356 Delegate* delegate_; | 377 Delegate* delegate_; |
| 357 }; | 378 }; |
| 358 | 379 |
| 359 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ | 380 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ |
| OLD | NEW |