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_keep_alive_service_factory.h" | 7 #include "apps/app_keep_alive_service_factory.h" |
8 #include "apps/app_load_service_factory.h" | 8 #include "apps/app_load_service_factory.h" |
9 #include "apps/app_restore_service_factory.h" | 9 #include "apps/app_restore_service_factory.h" |
10 #include "apps/shell_window_geometry_cache.h" | 10 #include "apps/shell_window_geometry_cache.h" |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 extensions::ScreenlockPrivateEventRouter::GetFactoryInstance(); | 274 extensions::ScreenlockPrivateEventRouter::GetFactoryInstance(); |
275 #endif | 275 #endif |
276 extensions::LocationManager::GetFactoryInstance(); | 276 extensions::LocationManager::GetFactoryInstance(); |
277 extensions::ManagementAPI::GetFactoryInstance(); | 277 extensions::ManagementAPI::GetFactoryInstance(); |
278 extensions::MDnsAPI::GetFactoryInstance(); | 278 extensions::MDnsAPI::GetFactoryInstance(); |
279 extensions::MediaGalleriesPrivateAPI::GetFactoryInstance(); | 279 extensions::MediaGalleriesPrivateAPI::GetFactoryInstance(); |
280 #if defined(OS_CHROMEOS) | 280 #if defined(OS_CHROMEOS) |
281 extensions::MediaPlayerAPI::GetFactoryInstance(); | 281 extensions::MediaPlayerAPI::GetFactoryInstance(); |
282 #endif | 282 #endif |
283 extensions::MenuManagerFactory::GetInstance(); | 283 extensions::MenuManagerFactory::GetInstance(); |
284 #if defined(OS_CHROMEOS) || defined(OS_WIN) | 284 #if defined(OS_CHROMEOS) || defined(OS_WIN) || defined(OS_MACOSX) |
285 extensions::NetworkingPrivateEventRouterFactory::GetInstance(); | 285 extensions::NetworkingPrivateEventRouterFactory::GetInstance(); |
286 #endif // defined(OS_CHROMEOS) || defined(OS_WIN) | 286 #endif // defined(OS_CHROMEOS) || defined(OS_WIN) |
287 extensions::OmniboxAPI::GetFactoryInstance(); | 287 extensions::OmniboxAPI::GetFactoryInstance(); |
288 #if defined(ENABLE_PLUGINS) | 288 #if defined(ENABLE_PLUGINS) |
289 extensions::PluginManager::GetFactoryInstance(); | 289 extensions::PluginManager::GetFactoryInstance(); |
290 #endif // defined(ENABLE_PLUGINS) | 290 #endif // defined(ENABLE_PLUGINS) |
291 extensions::PreferenceAPI::GetFactoryInstance(); | 291 extensions::PreferenceAPI::GetFactoryInstance(); |
292 extensions::ProcessesAPI::GetFactoryInstance(); | 292 extensions::ProcessesAPI::GetFactoryInstance(); |
293 extensions::PushMessagingAPI::GetFactoryInstance(); | 293 extensions::PushMessagingAPI::GetFactoryInstance(); |
294 extensions::RuntimeAPIFactory::GetInstance(); | 294 extensions::RuntimeAPIFactory::GetInstance(); |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 #endif | 382 #endif |
383 #if defined(ENABLE_EXTENSIONS) | 383 #if defined(ENABLE_EXTENSIONS) |
384 TokenCacheServiceFactory::GetInstance(); | 384 TokenCacheServiceFactory::GetInstance(); |
385 #endif | 385 #endif |
386 WebDataServiceFactory::GetInstance(); | 386 WebDataServiceFactory::GetInstance(); |
387 } | 387 } |
388 | 388 |
389 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { | 389 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { |
390 EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 390 EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
391 } | 391 } |
OLD | NEW |