| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 #endif | 164 #endif |
| 165 BookmarkModelFactory::GetInstance(); | 165 BookmarkModelFactory::GetInstance(); |
| 166 BookmarkUndoServiceFactory::GetInstance(); | 166 BookmarkUndoServiceFactory::GetInstance(); |
| 167 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 167 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
| 168 CaptivePortalServiceFactory::GetInstance(); | 168 CaptivePortalServiceFactory::GetInstance(); |
| 169 #endif | 169 #endif |
| 170 GeolocationPermissionContextFactory::GetInstance(); | 170 GeolocationPermissionContextFactory::GetInstance(); |
| 171 #if defined(OS_ANDROID) | 171 #if defined(OS_ANDROID) |
| 172 ProtectedMediaIdentifierPermissionContextFactory::GetInstance(); | 172 ProtectedMediaIdentifierPermissionContextFactory::GetInstance(); |
| 173 #endif | 173 #endif |
| 174 #if defined(ENABLE_FULL_PRINTING) | 174 #if defined(ENABLE_PRINT_PREVIEW) |
| 175 CloudPrintProxyServiceFactory::GetInstance(); | 175 CloudPrintProxyServiceFactory::GetInstance(); |
| 176 #endif | 176 #endif |
| 177 CookieSettings::Factory::GetInstance(); | 177 CookieSettings::Factory::GetInstance(); |
| 178 #if defined(ENABLE_NOTIFICATIONS) | 178 #if defined(ENABLE_NOTIFICATIONS) |
| 179 DesktopNotificationServiceFactory::GetInstance(); | 179 DesktopNotificationServiceFactory::GetInstance(); |
| 180 #endif | 180 #endif |
| 181 dom_distiller::DomDistillerServiceFactory::GetInstance(); | 181 dom_distiller::DomDistillerServiceFactory::GetInstance(); |
| 182 domain_reliability::DomainReliabilityServiceFactory::GetInstance(); | 182 domain_reliability::DomainReliabilityServiceFactory::GetInstance(); |
| 183 DownloadServiceFactory::GetInstance(); | 183 DownloadServiceFactory::GetInstance(); |
| 184 #if defined(ENABLE_EXTENSIONS) | 184 #if defined(ENABLE_EXTENSIONS) |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 TemplateURLServiceFactory::GetInstance(); | 262 TemplateURLServiceFactory::GetInstance(); |
| 263 #if defined(ENABLE_THEMES) | 263 #if defined(ENABLE_THEMES) |
| 264 ThemeServiceFactory::GetInstance(); | 264 ThemeServiceFactory::GetInstance(); |
| 265 #endif | 265 #endif |
| 266 WebDataServiceFactory::GetInstance(); | 266 WebDataServiceFactory::GetInstance(); |
| 267 } | 267 } |
| 268 | 268 |
| 269 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { | 269 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { |
| 270 EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 270 EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
| 271 } | 271 } |
| OLD | NEW |