| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 | 369 |
| 370 FilePath last_selected_directory_; | 370 FilePath last_selected_directory_; |
| 371 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. | 371 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. |
| 372 | 372 |
| 373 // The Extension Preferences. Only created if CreateExtensionService is | 373 // The Extension Preferences. Only created if CreateExtensionService is |
| 374 // invoked. | 374 // invoked. |
| 375 scoped_ptr<ExtensionPrefs> extension_prefs_; | 375 scoped_ptr<ExtensionPrefs> extension_prefs_; |
| 376 | 376 |
| 377 scoped_ptr<ExtensionService> extension_service_; | 377 scoped_ptr<ExtensionService> extension_service_; |
| 378 | 378 |
| 379 scoped_ptr<ExtensionProcessManager> extension_process_manager_; |
| 380 |
| 379 scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; | 381 scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; |
| 380 | 382 |
| 381 scoped_refptr<ExtensionSpecialStoragePolicy> | 383 scoped_refptr<ExtensionSpecialStoragePolicy> |
| 382 extension_special_storage_policy_; | 384 extension_special_storage_policy_; |
| 383 | 385 |
| 384 // The proxy prefs tracker. | 386 // The proxy prefs tracker. |
| 385 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 387 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 386 | 388 |
| 387 // We use a temporary directory to store testing profile data. In a multi- | 389 // We use a temporary directory to store testing profile data. In a multi- |
| 388 // profile environment, this is invalid and the directory is managed by the | 390 // profile environment, this is invalid and the directory is managed by the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 399 // testing. | 401 // testing. |
| 400 ProfileDependencyManager* profile_dependency_manager_; | 402 ProfileDependencyManager* profile_dependency_manager_; |
| 401 | 403 |
| 402 scoped_refptr<ChromeAppCacheService> appcache_service_; | 404 scoped_refptr<ChromeAppCacheService> appcache_service_; |
| 403 | 405 |
| 404 // The QuotaManager, only available if set explicitly via SetQuotaManager. | 406 // The QuotaManager, only available if set explicitly via SetQuotaManager. |
| 405 scoped_refptr<quota::QuotaManager> quota_manager_; | 407 scoped_refptr<quota::QuotaManager> quota_manager_; |
| 406 }; | 408 }; |
| 407 | 409 |
| 408 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ | 410 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ |
| OLD | NEW |