| 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" |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 AutomaticProfileResetterFactory::GetInstance(); | 153 AutomaticProfileResetterFactory::GetInstance(); |
| 154 #endif | 154 #endif |
| 155 #if defined(ENABLE_BACKGROUND) | 155 #if defined(ENABLE_BACKGROUND) |
| 156 BackgroundContentsServiceFactory::GetInstance(); | 156 BackgroundContentsServiceFactory::GetInstance(); |
| 157 #endif | 157 #endif |
| 158 BookmarkModelFactory::GetInstance(); | 158 BookmarkModelFactory::GetInstance(); |
| 159 #if !defined(OS_ANDROID) | 159 #if !defined(OS_ANDROID) |
| 160 BookmarkUndoServiceFactory::GetInstance(); | 160 BookmarkUndoServiceFactory::GetInstance(); |
| 161 #endif | 161 #endif |
| 162 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 162 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
| 163 captive_portal::CaptivePortalServiceFactory::GetInstance(); | 163 CaptivePortalServiceFactory::GetInstance(); |
| 164 #endif | 164 #endif |
| 165 ChromeGeolocationPermissionContextFactory::GetInstance(); | 165 ChromeGeolocationPermissionContextFactory::GetInstance(); |
| 166 #if defined(OS_ANDROID) | 166 #if defined(OS_ANDROID) |
| 167 ProtectedMediaIdentifierPermissionContextFactory::GetInstance(); | 167 ProtectedMediaIdentifierPermissionContextFactory::GetInstance(); |
| 168 #endif | 168 #endif |
| 169 #if defined(ENABLE_FULL_PRINTING) | 169 #if defined(ENABLE_FULL_PRINTING) |
| 170 CloudPrintProxyServiceFactory::GetInstance(); | 170 CloudPrintProxyServiceFactory::GetInstance(); |
| 171 #endif | 171 #endif |
| 172 CookieSettings::Factory::GetInstance(); | 172 CookieSettings::Factory::GetInstance(); |
| 173 #if defined(ENABLE_NOTIFICATIONS) | 173 #if defined(ENABLE_NOTIFICATIONS) |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 TemplateURLServiceFactory::GetInstance(); | 249 TemplateURLServiceFactory::GetInstance(); |
| 250 #if defined(ENABLE_THEMES) | 250 #if defined(ENABLE_THEMES) |
| 251 ThemeServiceFactory::GetInstance(); | 251 ThemeServiceFactory::GetInstance(); |
| 252 #endif | 252 #endif |
| 253 WebDataServiceFactory::GetInstance(); | 253 WebDataServiceFactory::GetInstance(); |
| 254 } | 254 } |
| 255 | 255 |
| 256 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { | 256 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { |
| 257 EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 257 EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
| 258 } | 258 } |
| OLD | NEW |