| 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 GlobalErrorServiceFactory::GetInstance(); | 273 GlobalErrorServiceFactory::GetInstance(); |
| 274 GoogleURLTrackerFactory::GetInstance(); | 274 GoogleURLTrackerFactory::GetInstance(); |
| 275 HistoryServiceFactory::GetInstance(); | 275 HistoryServiceFactory::GetInstance(); |
| 276 MediaGalleriesPreferencesFactory::GetInstance(); | 276 MediaGalleriesPreferencesFactory::GetInstance(); |
| 277 NTPResourceCacheFactory::GetInstance(); | 277 NTPResourceCacheFactory::GetInstance(); |
| 278 PasswordStoreFactory::GetInstance(); | 278 PasswordStoreFactory::GetInstance(); |
| 279 PersonalDataManagerFactory::GetInstance(); | 279 PersonalDataManagerFactory::GetInstance(); |
| 280 #if !defined(OS_ANDROID) | 280 #if !defined(OS_ANDROID) |
| 281 PinnedTabServiceFactory::GetInstance(); | 281 PinnedTabServiceFactory::GetInstance(); |
| 282 #endif | 282 #endif |
| 283 #if defined(ENABLE_PLUGINS) |
| 283 PluginPrefsFactory::GetInstance(); | 284 PluginPrefsFactory::GetInstance(); |
| 285 #endif |
| 284 #if defined(ENABLE_CONFIGURATION_POLICY) && !defined(OS_CHROMEOS) | 286 #if defined(ENABLE_CONFIGURATION_POLICY) && !defined(OS_CHROMEOS) |
| 285 // Not used on chromeos because signin happens before the profile is loaded. | 287 // Not used on chromeos because signin happens before the profile is loaded. |
| 286 policy::UserPolicySigninServiceFactory::GetInstance(); | 288 policy::UserPolicySigninServiceFactory::GetInstance(); |
| 287 #endif | 289 #endif |
| 288 predictors::AutocompleteActionPredictorFactory::GetInstance(); | 290 predictors::AutocompleteActionPredictorFactory::GetInstance(); |
| 289 predictors::PredictorDatabaseFactory::GetInstance(); | 291 predictors::PredictorDatabaseFactory::GetInstance(); |
| 290 predictors::ResourcePrefetchPredictorFactory::GetInstance(); | 292 predictors::ResourcePrefetchPredictorFactory::GetInstance(); |
| 291 prerender::PrerenderManagerFactory::GetInstance(); | 293 prerender::PrerenderManagerFactory::GetInstance(); |
| 292 prerender::PrerenderLinkManagerFactory::GetInstance(); | 294 prerender::PrerenderLinkManagerFactory::GetInstance(); |
| 293 ProfileSyncServiceFactory::GetInstance(); | 295 ProfileSyncServiceFactory::GetInstance(); |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 } | 425 } |
| 424 | 426 |
| 425 result.append("\n /* Toplevel profile */\n"); | 427 result.append("\n /* Toplevel profile */\n"); |
| 426 result.append(" Profile [shape=box];\n"); | 428 result.append(" Profile [shape=box];\n"); |
| 427 | 429 |
| 428 result.append("}\n"); | 430 result.append("}\n"); |
| 429 return result; | 431 return result; |
| 430 } | 432 } |
| 431 | 433 |
| 432 #endif | 434 #endif |
| OLD | NEW |