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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 // Find bar state. Created lazily by GetFindBarState(). | 369 // Find bar state. Created lazily by GetFindBarState(). |
371 scoped_ptr<FindBarState> find_bar_state_; | 370 scoped_ptr<FindBarState> find_bar_state_; |
372 | 371 |
373 FilePath last_selected_directory_; | 372 FilePath last_selected_directory_; |
374 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. | 373 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. |
375 | 374 |
376 // The Extension Preferences. Only created if CreateExtensionService is | 375 // The Extension Preferences. Only created if CreateExtensionService is |
377 // invoked. | 376 // invoked. |
378 scoped_ptr<ExtensionPrefs> extension_prefs_; | 377 scoped_ptr<ExtensionPrefs> extension_prefs_; |
379 | 378 |
380 // The Extension settings. Only created if CreateExtensionService is | |
381 // invoked. | |
382 scoped_refptr<ExtensionSettings> extension_settings_; | |
383 | |
384 scoped_ptr<ExtensionService> extension_service_; | 379 scoped_ptr<ExtensionService> extension_service_; |
385 | 380 |
386 scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; | 381 scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; |
387 | 382 |
388 scoped_refptr<ExtensionSpecialStoragePolicy> | 383 scoped_refptr<ExtensionSpecialStoragePolicy> |
389 extension_special_storage_policy_; | 384 extension_special_storage_policy_; |
390 | 385 |
391 // The proxy prefs tracker. | 386 // The proxy prefs tracker. |
392 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 387 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
393 | 388 |
(...skipping 14 matching lines...) Expand all Loading... |
408 // testing. | 403 // testing. |
409 ProfileDependencyManager* profile_dependency_manager_; | 404 ProfileDependencyManager* profile_dependency_manager_; |
410 | 405 |
411 scoped_refptr<ChromeAppCacheService> appcache_service_; | 406 scoped_refptr<ChromeAppCacheService> appcache_service_; |
412 | 407 |
413 // The QuotaManager, only available if set explicitly via SetQuotaManager. | 408 // The QuotaManager, only available if set explicitly via SetQuotaManager. |
414 scoped_refptr<quota::QuotaManager> quota_manager_; | 409 scoped_refptr<quota::QuotaManager> quota_manager_; |
415 }; | 410 }; |
416 | 411 |
417 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ | 412 #endif // CHROME_TEST_BASE_TESTING_PROFILE_H_ |
OLD | NEW |