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" | |
12 #include "chrome/browser/autofill/personal_data_manager_factory.h" | 11 #include "chrome/browser/autofill/personal_data_manager_factory.h" |
13 #include "chrome/browser/background/background_contents_service_factory.h" | 12 #include "chrome/browser/background/background_contents_service_factory.h" |
14 #include "chrome/browser/content_settings/cookie_settings.h" | 13 #include "chrome/browser/content_settings/cookie_settings.h" |
15 #include "chrome/browser/download/download_service_factory.h" | 14 #include "chrome/browser/download/download_service_factory.h" |
16 #include "chrome/browser/intents/web_intents_registry_factory.h" | 15 #include "chrome/browser/intents/web_intents_registry_factory.h" |
17 #include "chrome/browser/notifications/desktop_notification_service_factory.h" | 16 #include "chrome/browser/notifications/desktop_notification_service_factory.h" |
18 #include "chrome/browser/plugin_prefs_factory.h" | 17 #include "chrome/browser/plugin_prefs_factory.h" |
| 18 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" |
| 19 #include "chrome/browser/predictors/predictor_database_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" |
28 #include "chrome/browser/signin/signin_manager_factory.h" | 29 #include "chrome/browser/signin/signin_manager_factory.h" |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 if (built_factories_) | 164 if (built_factories_) |
164 return; | 165 return; |
165 | 166 |
166 BackgroundContentsServiceFactory::GetInstance(); | 167 BackgroundContentsServiceFactory::GetInstance(); |
167 CloudPrintProxyServiceFactory::GetInstance(); | 168 CloudPrintProxyServiceFactory::GetInstance(); |
168 CookieSettings::Factory::GetInstance(); | 169 CookieSettings::Factory::GetInstance(); |
169 DesktopNotificationServiceFactory::GetInstance(); | 170 DesktopNotificationServiceFactory::GetInstance(); |
170 DownloadServiceFactory::GetInstance(); | 171 DownloadServiceFactory::GetInstance(); |
171 FindBarStateFactory::GetInstance(); | 172 FindBarStateFactory::GetInstance(); |
172 GlobalErrorServiceFactory::GetInstance(); | 173 GlobalErrorServiceFactory::GetInstance(); |
173 NetworkActionPredictorFactory::GetInstance(); | 174 predictors::PredictorDatabaseFactory::GetInstance(); |
| 175 predictors::AutocompleteActionPredictorFactory::GetInstance(); |
174 NTPResourceCacheFactory::GetInstance(); | 176 NTPResourceCacheFactory::GetInstance(); |
175 PersonalDataManagerFactory::GetInstance(); | 177 PersonalDataManagerFactory::GetInstance(); |
176 PinnedTabServiceFactory::GetInstance(); | 178 PinnedTabServiceFactory::GetInstance(); |
177 PluginPrefsFactory::GetInstance(); | 179 PluginPrefsFactory::GetInstance(); |
178 protector::ProtectorServiceFactory::GetInstance(); | 180 protector::ProtectorServiceFactory::GetInstance(); |
179 prerender::PrerenderManagerFactory::GetInstance(); | 181 prerender::PrerenderManagerFactory::GetInstance(); |
180 ProfileSyncServiceFactory::GetInstance(); | 182 ProfileSyncServiceFactory::GetInstance(); |
181 SessionServiceFactory::GetInstance(); | 183 SessionServiceFactory::GetInstance(); |
182 SigninManagerFactory::GetInstance(); | 184 SigninManagerFactory::GetInstance(); |
183 #if defined(ENABLE_INPUT_SPEECH) | 185 #if defined(ENABLE_INPUT_SPEECH) |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 } | 297 } |
296 | 298 |
297 result.append("\n /* Toplevel profile */\n"); | 299 result.append("\n /* Toplevel profile */\n"); |
298 result.append(" Profile [shape=box];\n"); | 300 result.append(" Profile [shape=box];\n"); |
299 | 301 |
300 result.append("}\n"); | 302 result.append("}\n"); |
301 return result; | 303 return result; |
302 } | 304 } |
303 | 305 |
304 #endif | 306 #endif |
OLD | NEW |