| 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 |
| 11 #include "chrome/browser/autocomplete/network_action_predictor_factory.h" | 11 #include "chrome/browser/autocomplete/network_action_predictor_factory.h" |
| 12 #include "chrome/browser/autofill/personal_data_manager_factory.h" | 12 #include "chrome/browser/autofill/personal_data_manager_factory.h" |
| 13 #include "chrome/browser/background/background_contents_service_factory.h" | 13 #include "chrome/browser/background/background_contents_service_factory.h" |
| 14 #include "chrome/browser/content_settings/cookie_settings.h" | 14 #include "chrome/browser/content_settings/cookie_settings.h" |
| 15 #include "chrome/browser/download/download_service_factory.h" | 15 #include "chrome/browser/download/download_service_factory.h" |
| 16 #include "chrome/browser/intents/web_intents_registry_factory.h" | 16 #include "chrome/browser/intents/web_intents_registry_factory.h" |
| 17 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 17 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
| 18 #include "chrome/browser/password_manager/password_store_factory.h" |
| 18 #include "chrome/browser/plugin_prefs_factory.h" | 19 #include "chrome/browser/plugin_prefs_factory.h" |
| 19 #include "chrome/browser/prerender/prerender_manager_factory.h" | 20 #include "chrome/browser/prerender/prerender_manager_factory.h" |
| 20 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.
h" | 21 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.
h" |
| 21 #include "chrome/browser/profiles/profile.h" | 22 #include "chrome/browser/profiles/profile.h" |
| 22 #include "chrome/browser/profiles/profile_keyed_service.h" | 23 #include "chrome/browser/profiles/profile_keyed_service.h" |
| 23 #include "chrome/browser/profiles/profile_keyed_service_factory.h" | 24 #include "chrome/browser/profiles/profile_keyed_service_factory.h" |
| 24 #include "chrome/browser/protector/protector_service_factory.h" | 25 #include "chrome/browser/protector/protector_service_factory.h" |
| 25 #include "chrome/browser/search_engines/template_url_service_factory.h" | 26 #include "chrome/browser/search_engines/template_url_service_factory.h" |
| 26 #include "chrome/browser/sessions/session_service_factory.h" | 27 #include "chrome/browser/sessions/session_service_factory.h" |
| 27 #include "chrome/browser/sessions/tab_restore_service_factory.h" | 28 #include "chrome/browser/sessions/tab_restore_service_factory.h" |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 #if !defined(OS_ANDROID) | 169 #if !defined(OS_ANDROID) |
| 169 CloudPrintProxyServiceFactory::GetInstance(); | 170 CloudPrintProxyServiceFactory::GetInstance(); |
| 170 #endif | 171 #endif |
| 171 CookieSettings::Factory::GetInstance(); | 172 CookieSettings::Factory::GetInstance(); |
| 172 DesktopNotificationServiceFactory::GetInstance(); | 173 DesktopNotificationServiceFactory::GetInstance(); |
| 173 DownloadServiceFactory::GetInstance(); | 174 DownloadServiceFactory::GetInstance(); |
| 174 FindBarStateFactory::GetInstance(); | 175 FindBarStateFactory::GetInstance(); |
| 175 GlobalErrorServiceFactory::GetInstance(); | 176 GlobalErrorServiceFactory::GetInstance(); |
| 176 NetworkActionPredictorFactory::GetInstance(); | 177 NetworkActionPredictorFactory::GetInstance(); |
| 177 NTPResourceCacheFactory::GetInstance(); | 178 NTPResourceCacheFactory::GetInstance(); |
| 179 PasswordStoreFactory::GetInstance(); |
| 178 PersonalDataManagerFactory::GetInstance(); | 180 PersonalDataManagerFactory::GetInstance(); |
| 179 PinnedTabServiceFactory::GetInstance(); | 181 PinnedTabServiceFactory::GetInstance(); |
| 180 PluginPrefsFactory::GetInstance(); | 182 PluginPrefsFactory::GetInstance(); |
| 181 protector::ProtectorServiceFactory::GetInstance(); | 183 protector::ProtectorServiceFactory::GetInstance(); |
| 182 prerender::PrerenderManagerFactory::GetInstance(); | 184 prerender::PrerenderManagerFactory::GetInstance(); |
| 183 ProfileSyncServiceFactory::GetInstance(); | 185 ProfileSyncServiceFactory::GetInstance(); |
| 184 SessionServiceFactory::GetInstance(); | 186 SessionServiceFactory::GetInstance(); |
| 185 SigninManagerFactory::GetInstance(); | 187 SigninManagerFactory::GetInstance(); |
| 186 #if defined(ENABLE_INPUT_SPEECH) | 188 #if defined(ENABLE_INPUT_SPEECH) |
| 187 SpeechInputExtensionManager::InitializeFactory(); | 189 SpeechInputExtensionManager::InitializeFactory(); |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 } | 303 } |
| 302 | 304 |
| 303 result.append("\n /* Toplevel profile */\n"); | 305 result.append("\n /* Toplevel profile */\n"); |
| 304 result.append(" Profile [shape=box];\n"); | 306 result.append(" Profile [shape=box];\n"); |
| 305 | 307 |
| 306 result.append("}\n"); | 308 result.append("}\n"); |
| 307 return result; | 309 return result; |
| 308 } | 310 } |
| 309 | 311 |
| 310 #endif | 312 #endif |
| OLD | NEW |