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