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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 chromeos::ManagedUserPasswordServiceFactory::GetInstance(); | 195 chromeos::ManagedUserPasswordServiceFactory::GetInstance(); |
196 chromeos::ManagerPasswordServiceFactory::GetInstance(); | 196 chromeos::ManagerPasswordServiceFactory::GetInstance(); |
197 #endif | 197 #endif |
198 ManagedUserServiceFactory::GetInstance(); | 198 ManagedUserServiceFactory::GetInstance(); |
199 ManagedUserSyncServiceFactory::GetInstance(); | 199 ManagedUserSyncServiceFactory::GetInstance(); |
200 #endif | 200 #endif |
201 #if !defined(OS_ANDROID) | 201 #if !defined(OS_ANDROID) |
202 MediaGalleriesPreferencesFactory::GetInstance(); | 202 MediaGalleriesPreferencesFactory::GetInstance(); |
203 notifier::ChromeNotifierServiceFactory::GetInstance(); | 203 notifier::ChromeNotifierServiceFactory::GetInstance(); |
204 notifier::SyncedNotificationAppInfoServiceFactory::GetInstance(); | 204 notifier::SyncedNotificationAppInfoServiceFactory::GetInstance(); |
| 205 NTPResourceCacheFactory::GetInstance(); |
205 #endif | 206 #endif |
206 NTPResourceCacheFactory::GetInstance(); | |
207 PasswordStoreFactory::GetInstance(); | 207 PasswordStoreFactory::GetInstance(); |
208 #if !defined(OS_ANDROID) | 208 #if !defined(OS_ANDROID) |
209 PinnedTabServiceFactory::GetInstance(); | 209 PinnedTabServiceFactory::GetInstance(); |
210 #endif | 210 #endif |
211 #if defined(ENABLE_PLUGINS) | 211 #if defined(ENABLE_PLUGINS) |
212 PluginPrefsFactory::GetInstance(); | 212 PluginPrefsFactory::GetInstance(); |
213 #endif | 213 #endif |
214 policy::ProfilePolicyConnectorFactory::GetInstance(); | 214 policy::ProfilePolicyConnectorFactory::GetInstance(); |
215 #if defined(ENABLE_CONFIGURATION_POLICY) | 215 #if defined(ENABLE_CONFIGURATION_POLICY) |
216 #if defined(OS_CHROMEOS) | 216 #if defined(OS_CHROMEOS) |
(...skipping 32 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 |