Chromium Code Reviews| 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" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
| 14 #include "components/domain_reliability/clear_mode.h" | 14 #include "components/domain_reliability/clear_mode.h" |
| 15 #include "components/keyed_service/content/browser_context_keyed_service_factory .h" | 15 #include "components/keyed_service/content/browser_context_keyed_service_factory .h" |
| 16 #include "components/keyed_service/core/refcounted_keyed_service.h" | |
|
Jay Civelli
2015/01/27 00:58:23
Is this include needed?
sdefresne
2015/01/27 09:55:26
Good catch. It looks like the implementation uses
Jitu( very slow this week)
2015/01/27 10:50:40
Done.
| |
| 16 | 17 |
| 17 namespace content { | 18 namespace content { |
| 18 class MockResourceContext; | 19 class MockResourceContext; |
| 19 class SSLHostStateDelegate; | 20 class SSLHostStateDelegate; |
| 20 class ZoomLevelDelegate; | 21 class ZoomLevelDelegate; |
| 21 } | 22 } |
| 22 | 23 |
| 23 namespace history { | 24 namespace history { |
| 24 class TopSites; | 25 class TopSites; |
| 25 } | 26 } |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 176 bool CreateHistoryService(bool delete_file, bool no_db) WARN_UNUSED_RESULT; | 177 bool CreateHistoryService(bool delete_file, bool no_db) WARN_UNUSED_RESULT; |
| 177 | 178 |
| 178 // Shuts down and nulls out the reference to HistoryService. | 179 // Shuts down and nulls out the reference to HistoryService. |
| 179 void DestroyHistoryService(); | 180 void DestroyHistoryService(); |
| 180 | 181 |
| 181 // Creates TopSites. This returns immediately, and top sites may not be | 182 // Creates TopSites. This returns immediately, and top sites may not be |
| 182 // loaded. Use BlockUntilTopSitesLoaded to ensure TopSites has finished | 183 // loaded. Use BlockUntilTopSitesLoaded to ensure TopSites has finished |
| 183 // loading. | 184 // loading. |
| 184 void CreateTopSites(); | 185 void CreateTopSites(); |
| 185 | 186 |
| 186 // Allows to set a test implementation |top_sites|. Testing profile owns | |
| 187 // the reference and is responsible for releasing memory. | |
| 188 void SetTopSites(history::TopSites* top_sites); | |
| 189 | |
| 190 // Shuts down and nulls out the reference to TopSites. | |
| 191 void DestroyTopSites(); | 187 void DestroyTopSites(); |
| 192 | 188 |
| 193 // Creates the BookmarkBarModel. If not invoked the bookmark bar model is | 189 // Creates the BookmarkBarModel. If not invoked the bookmark bar model is |
| 194 // NULL. If |delete_file| is true, the bookmarks file is deleted first, then | 190 // NULL. If |delete_file| is true, the bookmarks file is deleted first, then |
| 195 // the model is created. As TestingProfile deletes the directory containing | 191 // the model is created. As TestingProfile deletes the directory containing |
| 196 // the files used by HistoryService, the boolean only matters if you're | 192 // the files used by HistoryService, the boolean only matters if you're |
| 197 // recreating the BookmarkModel. | 193 // recreating the BookmarkModel. |
| 198 // | 194 // |
| 199 // NOTE: this does not block until the bookmarks are loaded. For that use | 195 // NOTE: this does not block until the bookmarks are loaded. For that use |
| 200 // WaitForBookmarkModelToLoad(). | 196 // WaitForBookmarkModelToLoad(). |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 274 ExtensionSpecialStoragePolicy* extension_special_storage_policy); | 270 ExtensionSpecialStoragePolicy* extension_special_storage_policy); |
| 275 #endif | 271 #endif |
| 276 ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy() override; | 272 ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy() override; |
| 277 // TODO(ajwong): Remove this API in favor of directly retrieving the | 273 // TODO(ajwong): Remove this API in favor of directly retrieving the |
| 278 // CookieStore from the StoragePartition after ExtensionURLRequestContext | 274 // CookieStore from the StoragePartition after ExtensionURLRequestContext |
| 279 // has been removed. | 275 // has been removed. |
| 280 net::CookieMonster* GetCookieMonster(); | 276 net::CookieMonster* GetCookieMonster(); |
| 281 | 277 |
| 282 PrefService* GetPrefs() override; | 278 PrefService* GetPrefs() override; |
| 283 | 279 |
| 284 history::TopSites* GetTopSites() override; | |
| 285 history::TopSites* GetTopSitesWithoutCreating() override; | |
| 286 | |
| 287 net::URLRequestContextGetter* GetMediaRequestContext() override; | 280 net::URLRequestContextGetter* GetMediaRequestContext() override; |
| 288 net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 281 net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
| 289 int renderer_child_id) override; | 282 int renderer_child_id) override; |
| 290 net::URLRequestContextGetter* GetRequestContextForExtensions() override; | 283 net::URLRequestContextGetter* GetRequestContextForExtensions() override; |
| 291 net::URLRequestContextGetter* GetMediaRequestContextForStoragePartition( | 284 net::URLRequestContextGetter* GetMediaRequestContextForStoragePartition( |
| 292 const base::FilePath& partition_path, | 285 const base::FilePath& partition_path, |
| 293 bool in_memory) override; | 286 bool in_memory) override; |
| 294 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 287 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 295 const base::FilePath& partition_path, | 288 const base::FilePath& partition_path, |
| 296 bool in_memory, | 289 bool in_memory, |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 372 bool guest_session_; | 365 bool guest_session_; |
| 373 | 366 |
| 374 std::string supervised_user_id_; | 367 std::string supervised_user_id_; |
| 375 | 368 |
| 376 // Did the last session exit cleanly? Default is true. | 369 // Did the last session exit cleanly? Default is true. |
| 377 bool last_session_exited_cleanly_; | 370 bool last_session_exited_cleanly_; |
| 378 | 371 |
| 379 scoped_refptr<HostContentSettingsMap> host_content_settings_map_; | 372 scoped_refptr<HostContentSettingsMap> host_content_settings_map_; |
| 380 | 373 |
| 381 base::FilePath last_selected_directory_; | 374 base::FilePath last_selected_directory_; |
| 382 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. | |
| 383 | 375 |
| 384 #if defined(ENABLE_EXTENSIONS) | 376 #if defined(ENABLE_EXTENSIONS) |
| 385 scoped_refptr<ExtensionSpecialStoragePolicy> | 377 scoped_refptr<ExtensionSpecialStoragePolicy> |
| 386 extension_special_storage_policy_; | 378 extension_special_storage_policy_; |
| 387 #endif | 379 #endif |
| 388 | 380 |
| 389 // The proxy prefs tracker. | 381 // The proxy prefs tracker. |
| 390 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 382 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 391 | 383 |
| 392 // We use a temporary directory to store testing profile data. In a multi- | 384 // We use a temporary directory to store testing profile data. In a multi- |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 413 | 405 |
| 414 // Weak pointer to a delegate for indicating that a profile was created. | 406 // Weak pointer to a delegate for indicating that a profile was created. |
| 415 Delegate* delegate_; | 407 Delegate* delegate_; |
| 416 | 408 |
| 417 std::string profile_name_; | 409 std::string profile_name_; |
| 418 | 410 |
| 419 scoped_ptr<policy::PolicyService> policy_service_; | 411 scoped_ptr<policy::PolicyService> policy_service_; |
| 420 }; | 412 }; |
| 421 | 413 |
| 422 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ | 414 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ |
| OLD | NEW |