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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h" | 71 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h" |
72 #include "chrome/browser/speech/extension_api/tts_extension_api.h" | 72 #include "chrome/browser/speech/extension_api/tts_extension_api.h" |
73 #include "chrome/browser/speech/speech_input_extension_manager.h" | 73 #include "chrome/browser/speech/speech_input_extension_manager.h" |
74 #include "chrome/browser/spellchecker/spellcheck_factory.h" | 74 #include "chrome/browser/spellchecker/spellcheck_factory.h" |
75 #include "chrome/browser/sync/profile_sync_service_factory.h" | 75 #include "chrome/browser/sync/profile_sync_service_factory.h" |
76 #include "chrome/browser/themes/theme_service_factory.h" | 76 #include "chrome/browser/themes/theme_service_factory.h" |
77 #include "chrome/browser/thumbnails/thumbnail_service_factory.h" | 77 #include "chrome/browser/thumbnails/thumbnail_service_factory.h" |
78 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" | 78 #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" |
79 #include "chrome/browser/ui/global_error/global_error_service_factory.h" | 79 #include "chrome/browser/ui/global_error/global_error_service_factory.h" |
80 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" | 80 #include "chrome/browser/ui/tabs/pinned_tab_service_factory.h" |
81 #include "chrome/browser/ui/webui/chrome_url_data_manager_factory.h" | |
82 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" | 81 #include "chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.h" |
83 #include "chrome/browser/user_style_sheet_watcher_factory.h" | 82 #include "chrome/browser/user_style_sheet_watcher_factory.h" |
84 #include "chrome/browser/webdata/web_data_service_factory.h" | 83 #include "chrome/browser/webdata/web_data_service_factory.h" |
85 | 84 |
86 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 85 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
87 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" | 86 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" |
88 #endif | 87 #endif |
89 | 88 |
90 #if defined(ENABLE_CONFIGURATION_POLICY) | 89 #if defined(ENABLE_CONFIGURATION_POLICY) |
91 #include "chrome/browser/policy/user_policy_signin_service_factory.h" | 90 #include "chrome/browser/policy/user_policy_signin_service_factory.h" |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 AboutSigninInternalsFactory::GetInstance(); | 234 AboutSigninInternalsFactory::GetInstance(); |
236 | 235 |
237 #if defined(ENABLE_BACKGROUND) | 236 #if defined(ENABLE_BACKGROUND) |
238 BackgroundContentsServiceFactory::GetInstance(); | 237 BackgroundContentsServiceFactory::GetInstance(); |
239 #endif | 238 #endif |
240 BookmarkModelFactory::GetInstance(); | 239 BookmarkModelFactory::GetInstance(); |
241 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 240 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
242 captive_portal::CaptivePortalServiceFactory::GetInstance(); | 241 captive_portal::CaptivePortalServiceFactory::GetInstance(); |
243 #endif | 242 #endif |
244 ChromeGeolocationPermissionContextFactory::GetInstance(); | 243 ChromeGeolocationPermissionContextFactory::GetInstance(); |
245 ChromeURLDataManagerFactory::GetInstance(); | |
246 #if defined(ENABLE_PRINTING) | 244 #if defined(ENABLE_PRINTING) |
247 CloudPrintProxyServiceFactory::GetInstance(); | 245 CloudPrintProxyServiceFactory::GetInstance(); |
248 #endif | 246 #endif |
249 CookieSettings::Factory::GetInstance(); | 247 CookieSettings::Factory::GetInstance(); |
250 #if defined(ENABLE_NOTIFICATIONS) | 248 #if defined(ENABLE_NOTIFICATIONS) |
251 DesktopNotificationServiceFactory::GetInstance(); | 249 DesktopNotificationServiceFactory::GetInstance(); |
252 #endif | 250 #endif |
253 DownloadServiceFactory::GetInstance(); | 251 DownloadServiceFactory::GetInstance(); |
254 #if defined(ENABLE_EXTENSIONS) | 252 #if defined(ENABLE_EXTENSIONS) |
255 apps::AppRestoreServiceFactory::GetInstance(); | 253 apps::AppRestoreServiceFactory::GetInstance(); |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 } | 451 } |
454 | 452 |
455 result.append("\n /* Toplevel profile */\n"); | 453 result.append("\n /* Toplevel profile */\n"); |
456 result.append(" Profile [shape=box];\n"); | 454 result.append(" Profile [shape=box];\n"); |
457 | 455 |
458 result.append("}\n"); | 456 result.append("}\n"); |
459 return result; | 457 return result; |
460 } | 458 } |
461 | 459 |
462 #endif | 460 #endif |
OLD | NEW |