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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" | 53 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" |
54 #include "chrome/browser/ui/global_error/global_error_service_factory.h" | 54 #include "chrome/browser/ui/global_error/global_error_service_factory.h" |
55 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" | 55 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" |
56 #include "chrome/browser/ui/webui/chrome_url_data_manager_factory.h" | 56 #include "chrome/browser/ui/webui/chrome_url_data_manager_factory.h" |
57 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" | 57 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" |
58 #include "chrome/browser/user_style_sheet_watcher_factory.h" | 58 #include "chrome/browser/user_style_sheet_watcher_factory.h" |
59 #include "chrome/browser/webdata/web_data_service_factory.h" | 59 #include "chrome/browser/webdata/web_data_service_factory.h" |
60 | 60 |
61 #if defined(ENABLE_CONFIGURATION_POLICY) | 61 #if defined(ENABLE_CONFIGURATION_POLICY) |
62 #include "chrome/browser/policy/managed_mode_policy_provider_factory.h" | 62 #include "chrome/browser/policy/managed_mode_policy_provider_factory.h" |
63 #include "chrome/browser/policy/user_policy_signin_service_factory.h" | |
64 #endif | 63 #endif |
65 | 64 |
66 #if defined(USE_AURA) | 65 #if defined(USE_AURA) |
67 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" | 66 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" |
68 #endif | 67 #endif |
69 | 68 |
70 #ifndef NDEBUG | 69 #ifndef NDEBUG |
71 #include "base/command_line.h" | 70 #include "base/command_line.h" |
72 #include "base/file_util.h" | 71 #include "base/file_util.h" |
73 #include "chrome/common/chrome_switches.h" | 72 #include "chrome/common/chrome_switches.h" |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 ManagedModePolicyProviderFactory::GetInstance(); | 226 ManagedModePolicyProviderFactory::GetInstance(); |
228 #endif | 227 #endif |
229 MediaGalleriesPreferencesFactory::GetInstance(); | 228 MediaGalleriesPreferencesFactory::GetInstance(); |
230 NTPResourceCacheFactory::GetInstance(); | 229 NTPResourceCacheFactory::GetInstance(); |
231 PasswordStoreFactory::GetInstance(); | 230 PasswordStoreFactory::GetInstance(); |
232 PersonalDataManagerFactory::GetInstance(); | 231 PersonalDataManagerFactory::GetInstance(); |
233 #if !defined(OS_ANDROID) | 232 #if !defined(OS_ANDROID) |
234 PinnedTabServiceFactory::GetInstance(); | 233 PinnedTabServiceFactory::GetInstance(); |
235 #endif | 234 #endif |
236 PluginPrefsFactory::GetInstance(); | 235 PluginPrefsFactory::GetInstance(); |
237 #if defined(ENABLE_CONFIGURATION_POLICY) && !defined(OS_CHROMEOS) | |
238 // Not used on chromeos because signin happens before the profile is loaded. | |
239 policy::UserPolicySigninServiceFactory::GetInstance(); | |
240 #endif | |
241 predictors::AutocompleteActionPredictorFactory::GetInstance(); | 236 predictors::AutocompleteActionPredictorFactory::GetInstance(); |
242 predictors::PredictorDatabaseFactory::GetInstance(); | 237 predictors::PredictorDatabaseFactory::GetInstance(); |
243 predictors::ResourcePrefetchPredictorFactory::GetInstance(); | 238 predictors::ResourcePrefetchPredictorFactory::GetInstance(); |
244 prerender::PrerenderManagerFactory::GetInstance(); | 239 prerender::PrerenderManagerFactory::GetInstance(); |
245 prerender::PrerenderLinkManagerFactory::GetInstance(); | 240 prerender::PrerenderLinkManagerFactory::GetInstance(); |
246 ProfileSyncServiceFactory::GetInstance(); | 241 ProfileSyncServiceFactory::GetInstance(); |
247 ProtocolHandlerRegistryFactory::GetInstance(); | 242 ProtocolHandlerRegistryFactory::GetInstance(); |
248 #if defined(ENABLE_PROTECTOR_SERVICE) | 243 #if defined(ENABLE_PROTECTOR_SERVICE) |
249 protector::ProtectorServiceFactory::GetInstance(); | 244 protector::ProtectorServiceFactory::GetInstance(); |
250 #endif | 245 #endif |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 } | 373 } |
379 | 374 |
380 result.append("\n /* Toplevel profile */\n"); | 375 result.append("\n /* Toplevel profile */\n"); |
381 result.append(" Profile [shape=box];\n"); | 376 result.append(" Profile [shape=box];\n"); |
382 | 377 |
383 result.append("}\n"); | 378 result.append("}\n"); |
384 return result; | 379 return result; |
385 } | 380 } |
386 | 381 |
387 #endif | 382 #endif |
OLD | NEW |