| 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 16 matching lines...) Expand all Loading... |
| 27 class CookieMonster; | 27 class CookieMonster; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace quota { | 30 namespace quota { |
| 31 class SpecialStoragePolicy; | 31 class SpecialStoragePolicy; |
| 32 } | 32 } |
| 33 | 33 |
| 34 class AutocompleteClassifier; | 34 class AutocompleteClassifier; |
| 35 class BookmarkModel; | 35 class BookmarkModel; |
| 36 class CommandLine; | 36 class CommandLine; |
| 37 class ExtensionSettings; | |
| 38 class ExtensionPrefs; | 37 class ExtensionPrefs; |
| 39 class ExtensionPrefStore; | 38 class ExtensionPrefStore; |
| 40 class ExtensionPrefValueMap; | 39 class ExtensionPrefValueMap; |
| 41 class ExtensionSpecialStoragePolicy; | 40 class ExtensionSpecialStoragePolicy; |
| 42 class FaviconService; | 41 class FaviconService; |
| 43 class FindBarState; | 42 class FindBarState; |
| 44 class GeolocationPermissionContext; | 43 class GeolocationPermissionContext; |
| 45 class HistoryService; | 44 class HistoryService; |
| 46 class HostContentSettingsMap; | 45 class HostContentSettingsMap; |
| 47 class PrefService; | 46 class PrefService; |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 // Find bar state. Created lazily by GetFindBarState(). | 365 // Find bar state. Created lazily by GetFindBarState(). |
| 367 scoped_ptr<FindBarState> find_bar_state_; | 366 scoped_ptr<FindBarState> find_bar_state_; |
| 368 | 367 |
| 369 FilePath last_selected_directory_; | 368 FilePath last_selected_directory_; |
| 370 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. | 369 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. |
| 371 | 370 |
| 372 // The Extension Preferences. Only created if CreateExtensionService is | 371 // The Extension Preferences. Only created if CreateExtensionService is |
| 373 // invoked. | 372 // invoked. |
| 374 scoped_ptr<ExtensionPrefs> extension_prefs_; | 373 scoped_ptr<ExtensionPrefs> extension_prefs_; |
| 375 | 374 |
| 376 // The Extension settings. Only created if CreateExtensionService is | |
| 377 // invoked. | |
| 378 scoped_refptr<ExtensionSettings> extension_settings_; | |
| 379 | |
| 380 scoped_ptr<ExtensionService> extension_service_; | 375 scoped_ptr<ExtensionService> extension_service_; |
| 381 | 376 |
| 382 scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; | 377 scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; |
| 383 | 378 |
| 384 scoped_refptr<ExtensionSpecialStoragePolicy> | 379 scoped_refptr<ExtensionSpecialStoragePolicy> |
| 385 extension_special_storage_policy_; | 380 extension_special_storage_policy_; |
| 386 | 381 |
| 387 // The proxy prefs tracker. | 382 // The proxy prefs tracker. |
| 388 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 383 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 389 | 384 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 404 // testing. | 399 // testing. |
| 405 ProfileDependencyManager* profile_dependency_manager_; | 400 ProfileDependencyManager* profile_dependency_manager_; |
| 406 | 401 |
| 407 scoped_refptr<ChromeAppCacheService> appcache_service_; | 402 scoped_refptr<ChromeAppCacheService> appcache_service_; |
| 408 | 403 |
| 409 // The QuotaManager, only available if set explicitly via SetQuotaManager. | 404 // The QuotaManager, only available if set explicitly via SetQuotaManager. |
| 410 scoped_refptr<quota::QuotaManager> quota_manager_; | 405 scoped_refptr<quota::QuotaManager> quota_manager_; |
| 411 }; | 406 }; |
| 412 | 407 |
| 413 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ | 408 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ |
| OLD | NEW |