OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/profile_dependency_manager.h" | 5 #include "chrome/browser/profiles/profile_dependency_manager.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <deque> | 8 #include <deque> |
9 #include <iterator> | 9 #include <iterator> |
10 | 10 |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 GlobalErrorServiceFactory::GetInstance(); | 268 GlobalErrorServiceFactory::GetInstance(); |
269 GoogleURLTrackerFactory::GetInstance(); | 269 GoogleURLTrackerFactory::GetInstance(); |
270 HistoryServiceFactory::GetInstance(); | 270 HistoryServiceFactory::GetInstance(); |
271 MediaGalleriesPreferencesFactory::GetInstance(); | 271 MediaGalleriesPreferencesFactory::GetInstance(); |
272 NTPResourceCacheFactory::GetInstance(); | 272 NTPResourceCacheFactory::GetInstance(); |
273 PasswordStoreFactory::GetInstance(); | 273 PasswordStoreFactory::GetInstance(); |
274 PersonalDataManagerFactory::GetInstance(); | 274 PersonalDataManagerFactory::GetInstance(); |
275 #if !defined(OS_ANDROID) | 275 #if !defined(OS_ANDROID) |
276 PinnedTabServiceFactory::GetInstance(); | 276 PinnedTabServiceFactory::GetInstance(); |
277 #endif | 277 #endif |
| 278 #if defined(ENABLE_PLUGINS) |
278 PluginPrefsFactory::GetInstance(); | 279 PluginPrefsFactory::GetInstance(); |
| 280 #endif |
279 #if defined(ENABLE_CONFIGURATION_POLICY) && !defined(OS_CHROMEOS) | 281 #if defined(ENABLE_CONFIGURATION_POLICY) && !defined(OS_CHROMEOS) |
280 // Not used on chromeos because signin happens before the profile is loaded. | 282 // Not used on chromeos because signin happens before the profile is loaded. |
281 policy::UserPolicySigninServiceFactory::GetInstance(); | 283 policy::UserPolicySigninServiceFactory::GetInstance(); |
282 #endif | 284 #endif |
283 predictors::AutocompleteActionPredictorFactory::GetInstance(); | 285 predictors::AutocompleteActionPredictorFactory::GetInstance(); |
284 predictors::PredictorDatabaseFactory::GetInstance(); | 286 predictors::PredictorDatabaseFactory::GetInstance(); |
285 predictors::ResourcePrefetchPredictorFactory::GetInstance(); | 287 predictors::ResourcePrefetchPredictorFactory::GetInstance(); |
286 prerender::PrerenderManagerFactory::GetInstance(); | 288 prerender::PrerenderManagerFactory::GetInstance(); |
287 prerender::PrerenderLinkManagerFactory::GetInstance(); | 289 prerender::PrerenderLinkManagerFactory::GetInstance(); |
288 ProfileSyncServiceFactory::GetInstance(); | 290 ProfileSyncServiceFactory::GetInstance(); |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 } | 420 } |
419 | 421 |
420 result.append("\n /* Toplevel profile */\n"); | 422 result.append("\n /* Toplevel profile */\n"); |
421 result.append(" Profile [shape=box];\n"); | 423 result.append(" Profile [shape=box];\n"); |
422 | 424 |
423 result.append("}\n"); | 425 result.append("}\n"); |
424 return result; | 426 return result; |
425 } | 427 } |
426 | 428 |
427 #endif | 429 #endif |
OLD | NEW |