| 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/autofill/personal_data_manager_factory.h" | 11 #include "chrome/browser/autofill/personal_data_manager_factory.h" |
| 12 #include "chrome/browser/background/background_contents_service_factory.h" | 12 #include "chrome/browser/background/background_contents_service_factory.h" |
| 13 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" | 13 #include "chrome/browser/captive_portal/captive_portal_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/extensions/api/commands/extension_command_service_facto
ry.h" | 16 #include "chrome/browser/extensions/api/commands/extension_command_service_facto
ry.h" |
| 17 #include "chrome/browser/extensions/api/discovery/suggested_links_registry_facto
ry.h" |
| 17 #include "chrome/browser/extensions/extension_system_factory.h" | 18 #include "chrome/browser/extensions/extension_system_factory.h" |
| 18 #include "chrome/browser/google/google_url_tracker_factory.h" | 19 #include "chrome/browser/google/google_url_tracker_factory.h" |
| 19 #include "chrome/browser/intents/web_intents_registry_factory.h" | 20 #include "chrome/browser/intents/web_intents_registry_factory.h" |
| 20 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 21 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
| 21 #include "chrome/browser/password_manager/password_store_factory.h" | 22 #include "chrome/browser/password_manager/password_store_factory.h" |
| 22 #include "chrome/browser/plugin_prefs_factory.h" | 23 #include "chrome/browser/plugin_prefs_factory.h" |
| 23 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" | 24 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" |
| 24 #include "chrome/browser/predictors/predictor_database_factory.h" | 25 #include "chrome/browser/predictors/predictor_database_factory.h" |
| 25 #include "chrome/browser/prerender/prerender_manager_factory.h" | 26 #include "chrome/browser/prerender/prerender_manager_factory.h" |
| 26 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.
h" | 27 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory.
h" |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 ChromeURLDataManagerFactory::GetInstance(); | 186 ChromeURLDataManagerFactory::GetInstance(); |
| 186 #if !defined(OS_ANDROID) | 187 #if !defined(OS_ANDROID) |
| 187 CloudPrintProxyServiceFactory::GetInstance(); | 188 CloudPrintProxyServiceFactory::GetInstance(); |
| 188 #endif | 189 #endif |
| 189 CookieSettings::Factory::GetInstance(); | 190 CookieSettings::Factory::GetInstance(); |
| 190 #if defined(ENABLE_NOTIFICATIONS) | 191 #if defined(ENABLE_NOTIFICATIONS) |
| 191 DesktopNotificationServiceFactory::GetInstance(); | 192 DesktopNotificationServiceFactory::GetInstance(); |
| 192 #endif | 193 #endif |
| 193 DownloadServiceFactory::GetInstance(); | 194 DownloadServiceFactory::GetInstance(); |
| 194 ExtensionCommandServiceFactory::GetInstance(); | 195 ExtensionCommandServiceFactory::GetInstance(); |
| 196 extensions::SuggestedLinksRegistryFactory::GetInstance(); |
| 195 ExtensionSystemFactory::GetInstance(); | 197 ExtensionSystemFactory::GetInstance(); |
| 196 FindBarStateFactory::GetInstance(); | 198 FindBarStateFactory::GetInstance(); |
| 197 #if defined(USE_AURA) | 199 #if defined(USE_AURA) |
| 198 GesturePrefsObserverFactoryAura::GetInstance(); | 200 GesturePrefsObserverFactoryAura::GetInstance(); |
| 199 #endif | 201 #endif |
| 200 GlobalErrorServiceFactory::GetInstance(); | 202 GlobalErrorServiceFactory::GetInstance(); |
| 201 GoogleURLTrackerFactory::GetInstance(); | 203 GoogleURLTrackerFactory::GetInstance(); |
| 202 NTPResourceCacheFactory::GetInstance(); | 204 NTPResourceCacheFactory::GetInstance(); |
| 203 PasswordStoreFactory::GetInstance(); | 205 PasswordStoreFactory::GetInstance(); |
| 204 PersonalDataManagerFactory::GetInstance(); | 206 PersonalDataManagerFactory::GetInstance(); |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 } | 340 } |
| 339 | 341 |
| 340 result.append("\n /* Toplevel profile */\n"); | 342 result.append("\n /* Toplevel profile */\n"); |
| 341 result.append(" Profile [shape=box];\n"); | 343 result.append(" Profile [shape=box];\n"); |
| 342 | 344 |
| 343 result.append("}\n"); | 345 result.append("}\n"); |
| 344 return result; | 346 return result; |
| 345 } | 347 } |
| 346 | 348 |
| 347 #endif | 349 #endif |
| OLD | NEW |