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

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

Issue 11620012: [Profiles, Fixit] Making GAIAInfoUpdateService into a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing RegisterUserPrefs Created 8 years 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 (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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h" 43 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h"
44 #include "chrome/browser/notifications/desktop_notification_service_factory.h" 44 #include "chrome/browser/notifications/desktop_notification_service_factory.h"
45 #include "chrome/browser/password_manager/password_store_factory.h" 45 #include "chrome/browser/password_manager/password_store_factory.h"
46 #include "chrome/browser/plugins/plugin_prefs_factory.h" 46 #include "chrome/browser/plugins/plugin_prefs_factory.h"
47 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" 47 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
48 #include "chrome/browser/predictors/predictor_database_factory.h" 48 #include "chrome/browser/predictors/predictor_database_factory.h"
49 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h" 49 #include "chrome/browser/predictors/resource_prefetch_predictor_factory.h"
50 #include "chrome/browser/prerender/prerender_link_manager_factory.h" 50 #include "chrome/browser/prerender/prerender_link_manager_factory.h"
51 #include "chrome/browser/prerender/prerender_manager_factory.h" 51 #include "chrome/browser/prerender/prerender_manager_factory.h"
52 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h" 52 #include "chrome/browser/printing/cloud_print/cloud_print_proxy_service_factory. h"
53 #include "chrome/browser/profiles/gaia_info_update_service_factory.h"
53 #include "chrome/browser/profiles/profile.h" 54 #include "chrome/browser/profiles/profile.h"
54 #include "chrome/browser/profiles/profile_keyed_service.h" 55 #include "chrome/browser/profiles/profile_keyed_service.h"
55 #include "chrome/browser/profiles/profile_keyed_service_factory.h" 56 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
56 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" 57 #include "chrome/browser/search_engines/template_url_fetcher_factory.h"
57 #include "chrome/browser/search_engines/template_url_service_factory.h" 58 #include "chrome/browser/search_engines/template_url_service_factory.h"
58 #include "chrome/browser/sessions/session_service_factory.h" 59 #include "chrome/browser/sessions/session_service_factory.h"
59 #include "chrome/browser/sessions/tab_restore_service_factory.h" 60 #include "chrome/browser/sessions/tab_restore_service_factory.h"
60 #include "chrome/browser/signin/signin_manager_factory.h" 61 #include "chrome/browser/signin/signin_manager_factory.h"
61 #include "chrome/browser/signin/token_service_factory.h" 62 #include "chrome/browser/signin/token_service_factory.h"
62 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h" 63 #include "chrome/browser/speech/chrome_speech_recognition_preferences.h"
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 extensions::ProcessesAPIFactory::GetInstance(); 249 extensions::ProcessesAPIFactory::GetInstance();
249 extensions::PushMessagingAPIFactory::GetInstance(); 250 extensions::PushMessagingAPIFactory::GetInstance();
250 extensions::SuggestedLinksRegistryFactory::GetInstance(); 251 extensions::SuggestedLinksRegistryFactory::GetInstance();
251 extensions::TabCaptureRegistryFactory::GetInstance(); 252 extensions::TabCaptureRegistryFactory::GetInstance();
252 extensions::TabsWindowsAPIFactory::GetInstance(); 253 extensions::TabsWindowsAPIFactory::GetInstance();
253 extensions::WebNavigationAPIFactory::GetInstance(); 254 extensions::WebNavigationAPIFactory::GetInstance();
254 ExtensionManagementAPIFactory::GetInstance(); 255 ExtensionManagementAPIFactory::GetInstance();
255 #endif 256 #endif
256 FaviconServiceFactory::GetInstance(); 257 FaviconServiceFactory::GetInstance();
257 FindBarStateFactory::GetInstance(); 258 FindBarStateFactory::GetInstance();
259 GAIAInfoUpdateServiceFactory::GetInstance();
258 #if defined(USE_AURA) 260 #if defined(USE_AURA)
259 GesturePrefsObserverFactoryAura::GetInstance(); 261 GesturePrefsObserverFactoryAura::GetInstance();
260 #endif 262 #endif
261 GlobalErrorServiceFactory::GetInstance(); 263 GlobalErrorServiceFactory::GetInstance();
262 GoogleURLTrackerFactory::GetInstance(); 264 GoogleURLTrackerFactory::GetInstance();
263 HistoryServiceFactory::GetInstance(); 265 HistoryServiceFactory::GetInstance();
264 MediaGalleriesPreferencesFactory::GetInstance(); 266 MediaGalleriesPreferencesFactory::GetInstance();
265 NTPResourceCacheFactory::GetInstance(); 267 NTPResourceCacheFactory::GetInstance();
266 PasswordStoreFactory::GetInstance(); 268 PasswordStoreFactory::GetInstance();
267 PersonalDataManagerFactory::GetInstance(); 269 PersonalDataManagerFactory::GetInstance();
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 } 413 }
412 414
413 result.append("\n /* Toplevel profile */\n"); 415 result.append("\n /* Toplevel profile */\n");
414 result.append(" Profile [shape=box];\n"); 416 result.append(" Profile [shape=box];\n");
415 417
416 result.append("}\n"); 418 result.append("}\n");
417 return result; 419 return result;
418 } 420 }
419 421
420 #endif 422 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698