OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.h" | 5 #include "chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.h" |
6 | 6 |
7 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h" | 7 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h" |
8 #include "chrome/browser/autofill/personal_data_manager_factory.h" | 8 #include "chrome/browser/autofill/personal_data_manager_factory.h" |
9 #include "chrome/browser/background/background_contents_service_factory.h" | 9 #include "chrome/browser/background/background_contents_service_factory.h" |
10 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 10 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
11 #include "chrome/browser/chrome_browser_main.h" | 11 #include "chrome/browser/chrome_browser_main.h" |
12 #include "chrome/browser/content_settings/cookie_settings.h" | 12 #include "chrome/browser/content_settings/cookie_settings.h" |
13 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" | 13 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" |
14 #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h" | 14 #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h" |
15 #include "chrome/browser/domain_reliability/service_factory.h" | 15 #include "chrome/browser/domain_reliability/service_factory.h" |
16 #include "chrome/browser/download/download_service_factory.h" | 16 #include "chrome/browser/download/download_service_factory.h" |
| 17 #include "chrome/browser/extensions/extension_management.h" |
17 #include "chrome/browser/favicon/favicon_service_factory.h" | 18 #include "chrome/browser/favicon/favicon_service_factory.h" |
18 #include "chrome/browser/geolocation/geolocation_permission_context_factory.h" | 19 #include "chrome/browser/geolocation/geolocation_permission_context_factory.h" |
19 #include "chrome/browser/google/google_url_tracker_factory.h" | 20 #include "chrome/browser/google/google_url_tracker_factory.h" |
20 #include "chrome/browser/history/history_service_factory.h" | 21 #include "chrome/browser/history/history_service_factory.h" |
21 #include "chrome/browser/invalidation/profile_invalidation_provider_factory.h" | 22 #include "chrome/browser/invalidation/profile_invalidation_provider_factory.h" |
22 #include "chrome/browser/media_galleries/media_galleries_preferences_factory.h" | 23 #include "chrome/browser/media_galleries/media_galleries_preferences_factory.h" |
23 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 24 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
24 #include "chrome/browser/password_manager/password_store_factory.h" | 25 #include "chrome/browser/password_manager/password_store_factory.h" |
25 #include "chrome/browser/plugins/plugin_prefs_factory.h" | 26 #include "chrome/browser/plugins/plugin_prefs_factory.h" |
26 #include "chrome/browser/policy/profile_policy_connector_factory.h" | 27 #include "chrome/browser/policy/profile_policy_connector_factory.h" |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 // | 134 // |
134 // TODO(erg): This needs to be something else. I don't think putting every | 135 // TODO(erg): This needs to be something else. I don't think putting every |
135 // FooServiceFactory here will scale or is desirable long term. | 136 // FooServiceFactory here will scale or is desirable long term. |
136 // | 137 // |
137 // static | 138 // static |
138 void ChromeBrowserMainExtraPartsProfiles:: | 139 void ChromeBrowserMainExtraPartsProfiles:: |
139 EnsureBrowserContextKeyedServiceFactoriesBuilt() { | 140 EnsureBrowserContextKeyedServiceFactoriesBuilt() { |
140 #if defined(ENABLE_EXTENSIONS) | 141 #if defined(ENABLE_EXTENSIONS) |
141 apps::EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 142 apps::EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
142 extensions::EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 143 extensions::EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
| 144 extensions::ExtensionManagementFactory::GetInstance(); |
143 chrome_extensions::EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 145 chrome_extensions::EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
144 AppShortcutManagerFactory::GetInstance(); | 146 AppShortcutManagerFactory::GetInstance(); |
145 EphemeralAppServiceFactory::GetInstance(); | 147 EphemeralAppServiceFactory::GetInstance(); |
146 #endif | 148 #endif |
147 | 149 |
148 #if defined(ENABLE_APP_LIST) | 150 #if defined(ENABLE_APP_LIST) |
149 app_list::AppListSyncableServiceFactory::GetInstance(); | 151 app_list::AppListSyncableServiceFactory::GetInstance(); |
150 #endif | 152 #endif |
151 | 153 |
152 AboutSigninInternalsFactory::GetInstance(); | 154 AboutSigninInternalsFactory::GetInstance(); |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 TemplateURLServiceFactory::GetInstance(); | 258 TemplateURLServiceFactory::GetInstance(); |
257 #if defined(ENABLE_THEMES) | 259 #if defined(ENABLE_THEMES) |
258 ThemeServiceFactory::GetInstance(); | 260 ThemeServiceFactory::GetInstance(); |
259 #endif | 261 #endif |
260 WebDataServiceFactory::GetInstance(); | 262 WebDataServiceFactory::GetInstance(); |
261 } | 263 } |
262 | 264 |
263 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { | 265 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { |
264 EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 266 EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
265 } | 267 } |
OLD | NEW |