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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 #endif | 130 #endif |
131 | 131 |
132 #if defined(ENABLE_MANAGED_USERS) | 132 #if defined(ENABLE_MANAGED_USERS) |
133 #include "chrome/browser/managed_mode/managed_user_service_factory.h" | 133 #include "chrome/browser/managed_mode/managed_user_service_factory.h" |
134 #include "chrome/browser/managed_mode/managed_user_sync_service_factory.h" | 134 #include "chrome/browser/managed_mode/managed_user_sync_service_factory.h" |
135 #endif | 135 #endif |
136 | 136 |
137 #if defined(OS_CHROMEOS) | 137 #if defined(OS_CHROMEOS) |
138 #include "chrome/browser/chromeos/extensions/input_method_api.h" | 138 #include "chrome/browser/chromeos/extensions/input_method_api.h" |
139 #include "chrome/browser/chromeos/extensions/media_player_api.h" | 139 #include "chrome/browser/chromeos/extensions/media_player_api.h" |
| 140 #include "chrome/browser/chromeos/extensions/screenlock_private_api.h" |
140 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" | 141 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" |
141 #include "chrome/browser/extensions/api/networking_private/networking_private_ev
ent_router_factory.h" | 142 #include "chrome/browser/extensions/api/networking_private/networking_private_ev
ent_router_factory.h" |
142 #if defined(FILE_MANAGER_EXTENSION) | 143 #if defined(FILE_MANAGER_EXTENSION) |
143 #include "chrome/browser/chromeos/extensions/file_manager/file_browser_private_a
pi_factory.h" | 144 #include "chrome/browser/chromeos/extensions/file_manager/file_browser_private_a
pi_factory.h" |
144 #endif | 145 #endif |
145 #endif | 146 #endif |
146 | 147 |
147 #if defined(USE_AURA) | 148 #if defined(USE_AURA) |
148 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" | 149 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" |
149 #endif | 150 #endif |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 extensions::HistoryAPI::GetFactoryInstance(); | 261 extensions::HistoryAPI::GetFactoryInstance(); |
261 extensions::IdentityAPI::GetFactoryInstance(); | 262 extensions::IdentityAPI::GetFactoryInstance(); |
262 extensions::IdleManagerFactory::GetInstance(); | 263 extensions::IdleManagerFactory::GetInstance(); |
263 extensions::InstallTrackerFactory::GetInstance(); | 264 extensions::InstallTrackerFactory::GetInstance(); |
264 #if defined(TOOLKIT_VIEWS) | 265 #if defined(TOOLKIT_VIEWS) |
265 extensions::InputAPI::GetFactoryInstance(); | 266 extensions::InputAPI::GetFactoryInstance(); |
266 #endif | 267 #endif |
267 #if defined(OS_CHROMEOS) | 268 #if defined(OS_CHROMEOS) |
268 extensions::InputImeAPI::GetFactoryInstance(); | 269 extensions::InputImeAPI::GetFactoryInstance(); |
269 extensions::InputMethodAPI::GetFactoryInstance(); | 270 extensions::InputMethodAPI::GetFactoryInstance(); |
| 271 extensions::ScreenlockPrivateEventRouter::GetFactoryInstance(); |
270 #endif | 272 #endif |
271 extensions::LocationManager::GetFactoryInstance(); | 273 extensions::LocationManager::GetFactoryInstance(); |
272 extensions::ManagementAPI::GetFactoryInstance(); | 274 extensions::ManagementAPI::GetFactoryInstance(); |
273 extensions::MDnsAPI::GetFactoryInstance(); | 275 extensions::MDnsAPI::GetFactoryInstance(); |
274 extensions::MediaGalleriesPrivateAPI::GetFactoryInstance(); | 276 extensions::MediaGalleriesPrivateAPI::GetFactoryInstance(); |
275 #if defined(OS_CHROMEOS) | 277 #if defined(OS_CHROMEOS) |
276 extensions::MediaPlayerAPI::GetFactoryInstance(); | 278 extensions::MediaPlayerAPI::GetFactoryInstance(); |
277 #endif | 279 #endif |
278 extensions::MenuManagerFactory::GetInstance(); | 280 extensions::MenuManagerFactory::GetInstance(); |
279 extensions::OmniboxAPI::GetFactoryInstance(); | 281 extensions::OmniboxAPI::GetFactoryInstance(); |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 #if defined(ENABLE_EXTENSIONS) | 375 #if defined(ENABLE_EXTENSIONS) |
374 TokenCacheServiceFactory::GetInstance(); | 376 TokenCacheServiceFactory::GetInstance(); |
375 #endif | 377 #endif |
376 TokenServiceFactory::GetInstance(); | 378 TokenServiceFactory::GetInstance(); |
377 WebDataServiceFactory::GetInstance(); | 379 WebDataServiceFactory::GetInstance(); |
378 } | 380 } |
379 | 381 |
380 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { | 382 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { |
381 EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 383 EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
382 } | 384 } |
OLD | NEW |