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

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

Issue 327243003: Introduce ProfileInvalidationProvider wrapper for InvalidationService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/chrome_browser_main_extra_parts_profiles.h" 5 #include "chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.h"
6 6
7 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h" 7 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h"
8 #include "chrome/browser/autofill/personal_data_manager_factory.h" 8 #include "chrome/browser/autofill/personal_data_manager_factory.h"
9 #include "chrome/browser/background/background_contents_service_factory.h" 9 #include "chrome/browser/background/background_contents_service_factory.h"
10 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 10 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
11 #include "chrome/browser/chrome_browser_main.h" 11 #include "chrome/browser/chrome_browser_main.h"
12 #include "chrome/browser/content_settings/cookie_settings.h" 12 #include "chrome/browser/content_settings/cookie_settings.h"
13 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" 13 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h"
14 #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h" 14 #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h"
15 #include "chrome/browser/download/download_service_factory.h" 15 #include "chrome/browser/download/download_service_factory.h"
16 #include "chrome/browser/favicon/favicon_service_factory.h" 16 #include "chrome/browser/favicon/favicon_service_factory.h"
17 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto ry.h" 17 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto ry.h"
18 #include "chrome/browser/google/google_url_tracker_factory.h" 18 #include "chrome/browser/google/google_url_tracker_factory.h"
19 #include "chrome/browser/history/history_service_factory.h" 19 #include "chrome/browser/history/history_service_factory.h"
20 #include "chrome/browser/invalidation/invalidation_service_factory.h" 20 #include "chrome/browser/invalidation/profile_invalidation_provider_factory.h"
21 #include "chrome/browser/media_galleries/media_galleries_preferences_factory.h" 21 #include "chrome/browser/media_galleries/media_galleries_preferences_factory.h"
22 #include "chrome/browser/notifications/desktop_notification_service_factory.h" 22 #include "chrome/browser/notifications/desktop_notification_service_factory.h"
23 #include "chrome/browser/password_manager/password_store_factory.h" 23 #include "chrome/browser/password_manager/password_store_factory.h"
24 #include "chrome/browser/plugins/plugin_prefs_factory.h" 24 #include "chrome/browser/plugins/plugin_prefs_factory.h"
25 #include "chrome/browser/policy/profile_policy_connector_factory.h" 25 #include "chrome/browser/policy/profile_policy_connector_factory.h"
26 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" 26 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
27 #include "chrome/browser/predictors/predictor_database_factory.h" 27 #include "chrome/browser/predictors/predictor_database_factory.h"
28 #include "chrome/browser/prerender/prerender_link_manager_factory.h" 28 #include "chrome/browser/prerender/prerender_link_manager_factory.h"
29 #include "chrome/browser/prerender/prerender_manager_factory.h" 29 #include "chrome/browser/prerender/prerender_manager_factory.h"
30 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h" 30 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h"
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 FaviconServiceFactory::GetInstance(); 179 FaviconServiceFactory::GetInstance();
180 FindBarStateFactory::GetInstance(); 180 FindBarStateFactory::GetInstance();
181 GAIAInfoUpdateServiceFactory::GetInstance(); 181 GAIAInfoUpdateServiceFactory::GetInstance();
182 #if defined(USE_AURA) 182 #if defined(USE_AURA)
183 GesturePrefsObserverFactoryAura::GetInstance(); 183 GesturePrefsObserverFactoryAura::GetInstance();
184 #endif 184 #endif
185 GlobalErrorServiceFactory::GetInstance(); 185 GlobalErrorServiceFactory::GetInstance();
186 GoogleURLTrackerFactory::GetInstance(); 186 GoogleURLTrackerFactory::GetInstance();
187 HistoryServiceFactory::GetInstance(); 187 HistoryServiceFactory::GetInstance();
188 HotwordServiceFactory::GetInstance(); 188 HotwordServiceFactory::GetInstance();
189 invalidation::InvalidationServiceFactory::GetInstance(); 189 invalidation::ProfileInvalidationProviderFactory::GetInstance();
190 InstantServiceFactory::GetInstance(); 190 InstantServiceFactory::GetInstance();
191 #if defined(ENABLE_SERVICE_DISCOVERY) 191 #if defined(ENABLE_SERVICE_DISCOVERY)
192 local_discovery::PrivetNotificationServiceFactory::GetInstance(); 192 local_discovery::PrivetNotificationServiceFactory::GetInstance();
193 #endif 193 #endif
194 #if defined(ENABLE_MANAGED_USERS) 194 #if defined(ENABLE_MANAGED_USERS)
195 #if defined(OS_CHROMEOS) 195 #if defined(OS_CHROMEOS)
196 chromeos::ManagedUserPasswordServiceFactory::GetInstance(); 196 chromeos::ManagedUserPasswordServiceFactory::GetInstance();
197 chromeos::ManagerPasswordServiceFactory::GetInstance(); 197 chromeos::ManagerPasswordServiceFactory::GetInstance();
198 #endif 198 #endif
199 ManagedUserServiceFactory::GetInstance(); 199 ManagedUserServiceFactory::GetInstance();
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 TemplateURLServiceFactory::GetInstance(); 251 TemplateURLServiceFactory::GetInstance();
252 #if defined(ENABLE_THEMES) 252 #if defined(ENABLE_THEMES)
253 ThemeServiceFactory::GetInstance(); 253 ThemeServiceFactory::GetInstance();
254 #endif 254 #endif
255 WebDataServiceFactory::GetInstance(); 255 WebDataServiceFactory::GetInstance();
256 } 256 }
257 257
258 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { 258 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() {
259 EnsureBrowserContextKeyedServiceFactoriesBuilt(); 259 EnsureBrowserContextKeyedServiceFactoriesBuilt();
260 } 260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698