Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: chrome/browser/profiles/profile_dependency_manager.cc

Issue 9610006: Refactoring, moving and renaming the NetworkActionPredictor. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Changing DB to PKS from RefcountedPKS and addressing comments. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/password_manager/password_store_factory.h" 17 #include "chrome/browser/password_manager/password_store_factory.h"
19 #include "chrome/browser/plugin_prefs_factory.h" 18 #include "chrome/browser/plugin_prefs_factory.h"
19 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
20 #include "chrome/browser/predictors/predictor_database_factory.h"
20 #include "chrome/browser/prerender/prerender_manager_factory.h" 21 #include "chrome/browser/prerender/prerender_manager_factory.h"
21 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h" 22 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h"
22 #include "chrome/browser/profiles/profile.h" 23 #include "chrome/browser/profiles/profile.h"
23 #include "chrome/browser/profiles/profile_keyed_service.h" 24 #include "chrome/browser/profiles/profile_keyed_service.h"
24 #include "chrome/browser/profiles/profile_keyed_service_factory.h" 25 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
25 #include "chrome/browser/protector/protector_service_factory.h" 26 #include "chrome/browser/protector/protector_service_factory.h"
26 #include "chrome/browser/search_engines/template_url_service_factory.h" 27 #include "chrome/browser/search_engines/template_url_service_factory.h"
27 #include "chrome/browser/sessions/session_service_factory.h" 28 #include "chrome/browser/sessions/session_service_factory.h"
28 #include "chrome/browser/sessions/tab_restore_service_factory.h" 29 #include "chrome/browser/sessions/tab_restore_service_factory.h"
29 #include "chrome/browser/signin/signin_manager_factory.h" 30 #include "chrome/browser/signin/signin_manager_factory.h"
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 168
168 BackgroundContentsServiceFactory::GetInstance(); 169 BackgroundContentsServiceFactory::GetInstance();
169 #if !defined(OS_ANDROID) 170 #if !defined(OS_ANDROID)
170 CloudPrintProxyServiceFactory::GetInstance(); 171 CloudPrintProxyServiceFactory::GetInstance();
171 #endif 172 #endif
172 CookieSettings::Factory::GetInstance(); 173 CookieSettings::Factory::GetInstance();
173 DesktopNotificationServiceFactory::GetInstance(); 174 DesktopNotificationServiceFactory::GetInstance();
174 DownloadServiceFactory::GetInstance(); 175 DownloadServiceFactory::GetInstance();
175 FindBarStateFactory::GetInstance(); 176 FindBarStateFactory::GetInstance();
176 GlobalErrorServiceFactory::GetInstance(); 177 GlobalErrorServiceFactory::GetInstance();
177 NetworkActionPredictorFactory::GetInstance(); 178 predictors::PredictorDatabaseFactory::GetInstance();
179 predictors::AutocompleteActionPredictorFactory::GetInstance();
178 NTPResourceCacheFactory::GetInstance(); 180 NTPResourceCacheFactory::GetInstance();
179 PasswordStoreFactory::GetInstance(); 181 PasswordStoreFactory::GetInstance();
180 PersonalDataManagerFactory::GetInstance(); 182 PersonalDataManagerFactory::GetInstance();
181 PinnedTabServiceFactory::GetInstance(); 183 PinnedTabServiceFactory::GetInstance();
182 PluginPrefsFactory::GetInstance(); 184 PluginPrefsFactory::GetInstance();
183 protector::ProtectorServiceFactory::GetInstance(); 185 protector::ProtectorServiceFactory::GetInstance();
184 prerender::PrerenderManagerFactory::GetInstance(); 186 prerender::PrerenderManagerFactory::GetInstance();
185 ProfileSyncServiceFactory::GetInstance(); 187 ProfileSyncServiceFactory::GetInstance();
186 SessionServiceFactory::GetInstance(); 188 SessionServiceFactory::GetInstance();
187 SigninManagerFactory::GetInstance(); 189 SigninManagerFactory::GetInstance();
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 } 305 }
304 306
305 result.append("\n /* Toplevel profile */\n"); 307 result.append("\n /* Toplevel profile */\n");
306 result.append(" Profile [shape=box];\n"); 308 result.append(" Profile [shape=box];\n");
307 309
308 result.append("}\n"); 310 result.append("}\n");
309 return result; 311 return result;
310 } 312 }
311 313
312 #endif 314 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698