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 "apps/app_load_service_factory.h" | 7 #include "apps/app_load_service_factory.h" |
8 #include "apps/app_restore_service_factory.h" | 8 #include "apps/app_restore_service_factory.h" |
9 #include "apps/shell_window_geometry_cache.h" | 9 #include "apps/shell_window_geometry_cache.h" |
10 #include "chrome/browser/apps/shortcut_manager_factory.h" | 10 #include "chrome/browser/apps/shortcut_manager_factory.h" |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 BackgroundContentsServiceFactory::GetInstance(); | 173 BackgroundContentsServiceFactory::GetInstance(); |
174 #endif | 174 #endif |
175 BookmarkModelFactory::GetInstance(); | 175 BookmarkModelFactory::GetInstance(); |
176 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 176 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
177 captive_portal::CaptivePortalServiceFactory::GetInstance(); | 177 captive_portal::CaptivePortalServiceFactory::GetInstance(); |
178 #endif | 178 #endif |
179 ChromeGeolocationPermissionContextFactory::GetInstance(); | 179 ChromeGeolocationPermissionContextFactory::GetInstance(); |
180 #if defined(OS_CHROMEOS) | 180 #if defined(OS_CHROMEOS) |
181 chromeos::NetworkingPrivateEventRouterFactory::GetInstance(); | 181 chromeos::NetworkingPrivateEventRouterFactory::GetInstance(); |
182 #endif | 182 #endif |
183 #if defined(ENABLE_PRINTING) | 183 #if defined(ENABLE_FULL_PRINTING) |
184 CloudPrintProxyServiceFactory::GetInstance(); | 184 CloudPrintProxyServiceFactory::GetInstance(); |
185 #endif | 185 #endif |
186 CookieSettings::Factory::GetInstance(); | 186 CookieSettings::Factory::GetInstance(); |
187 #if defined(ENABLE_NOTIFICATIONS) | 187 #if defined(ENABLE_NOTIFICATIONS) |
188 DesktopNotificationServiceFactory::GetInstance(); | 188 DesktopNotificationServiceFactory::GetInstance(); |
189 #endif | 189 #endif |
190 DownloadServiceFactory::GetInstance(); | 190 DownloadServiceFactory::GetInstance(); |
191 #if defined(ENABLE_EXTENSIONS) | 191 #if defined(ENABLE_EXTENSIONS) |
192 AppShortcutManagerFactory::GetInstance(); | 192 AppShortcutManagerFactory::GetInstance(); |
193 apps::AppLoadServiceFactory::GetInstance(); | 193 apps::AppLoadServiceFactory::GetInstance(); |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 TokenServiceFactory::GetInstance(); | 320 TokenServiceFactory::GetInstance(); |
321 #if !defined(OS_ANDROID) | 321 #if !defined(OS_ANDROID) |
322 UserStyleSheetWatcherFactory::GetInstance(); | 322 UserStyleSheetWatcherFactory::GetInstance(); |
323 #endif | 323 #endif |
324 WebDataServiceFactory::GetInstance(); | 324 WebDataServiceFactory::GetInstance(); |
325 } | 325 } |
326 | 326 |
327 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { | 327 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { |
328 EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 328 EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
329 } | 329 } |
OLD | NEW |