Fire an error if a pref used in the UI is missing once all prefs are fetched.
[chromium-blink-merge.git] / chrome / browser / sync / profile_sync_service_factory.cc
blob212d07856332eb1fb494d28b811b6c73f01abd33
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
3 // found in the LICENSE file.
5 #include "chrome/browser/sync/profile_sync_service_factory.h"
7 #include "base/command_line.h"
8 #include "base/memory/singleton.h"
9 #include "base/prefs/pref_service.h"
10 #include "chrome/browser/autofill/personal_data_manager_factory.h"
11 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
12 #include "chrome/browser/defaults.h"
13 #include "chrome/browser/history/history_service_factory.h"
14 #include "chrome/browser/invalidation/profile_invalidation_provider_factory.h"
15 #include "chrome/browser/password_manager/password_store_factory.h"
16 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/profiles/profile_manager.h"
18 #include "chrome/browser/search_engines/template_url_service_factory.h"
19 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h"
20 #include "chrome/browser/sessions/tab_restore_service_factory.h"
21 #include "chrome/browser/signin/about_signin_internals_factory.h"
22 #include "chrome/browser/signin/chrome_signin_client_factory.h"
23 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
24 #include "chrome/browser/signin/signin_manager_factory.h"
25 #include "chrome/browser/sync/profile_sync_components_factory_impl.h"
26 #include "chrome/browser/sync/profile_sync_service.h"
27 #include "chrome/browser/sync/startup_controller.h"
28 #include "chrome/browser/sync/supervised_user_signin_manager_wrapper.h"
29 #include "chrome/browser/themes/theme_service_factory.h"
30 #include "chrome/browser/ui/global_error/global_error_service_factory.h"
31 #include "chrome/browser/webdata/web_data_service_factory.h"
32 #include "components/keyed_service/content/browser_context_dependency_manager.h"
33 #include "components/signin/core/browser/profile_oauth2_token_service.h"
34 #include "components/signin/core/browser/signin_manager.h"
35 #include "components/variations/variations_associated_data.h"
36 #include "url/gurl.h"
38 #if defined(ENABLE_EXTENSIONS)
39 #include "extensions/browser/extension_system_provider.h"
40 #include "extensions/browser/extensions_browser_client.h"
41 #endif
43 // static
44 ProfileSyncServiceFactory* ProfileSyncServiceFactory::GetInstance() {
45 return Singleton<ProfileSyncServiceFactory>::get();
48 // static
49 ProfileSyncService* ProfileSyncServiceFactory::GetForProfile(
50 Profile* profile) {
51 if (!ProfileSyncService::IsSyncEnabled())
52 return NULL;
54 // Disable sync experimentally to measure impact on startup time. Supervised
55 // users are unaffected, since supervised users rely completely on sync.
56 // TODO(mlerman): Remove this after the experiment. crbug.com/454788
57 if (!profile->IsSupervised() &&
58 !variations::GetVariationParamValue("LightSpeed", "DisableSync")
59 .empty()) {
60 return NULL;
63 return static_cast<ProfileSyncService*>(
64 GetInstance()->GetServiceForBrowserContext(profile, true));
67 ProfileSyncServiceFactory::ProfileSyncServiceFactory()
68 : BrowserContextKeyedServiceFactory(
69 "ProfileSyncService",
70 BrowserContextDependencyManager::GetInstance()) {
71 // The ProfileSyncService depends on various SyncableServices being around
72 // when it is shut down. Specify those dependencies here to build the proper
73 // destruction order.
74 DependsOn(AboutSigninInternalsFactory::GetInstance());
75 DependsOn(autofill::PersonalDataManagerFactory::GetInstance());
76 DependsOn(BookmarkModelFactory::GetInstance());
77 DependsOn(ChromeSigninClientFactory::GetInstance());
78 DependsOn(GlobalErrorServiceFactory::GetInstance());
79 DependsOn(HistoryServiceFactory::GetInstance());
80 DependsOn(invalidation::ProfileInvalidationProviderFactory::GetInstance());
81 DependsOn(PasswordStoreFactory::GetInstance());
82 DependsOn(ProfileOAuth2TokenServiceFactory::GetInstance());
83 DependsOn(SigninManagerFactory::GetInstance());
84 DependsOn(TemplateURLServiceFactory::GetInstance());
85 #if defined(ENABLE_THEMES)
86 DependsOn(ThemeServiceFactory::GetInstance());
87 #endif
88 DependsOn(WebDataServiceFactory::GetInstance());
89 #if defined(ENABLE_EXTENSIONS)
90 DependsOn(
91 extensions::ExtensionsBrowserClient::Get()->GetExtensionSystemFactory());
92 #endif
94 // The following have not been converted to KeyedServices yet,
95 // and for now they are explicitly destroyed after the
96 // BrowserContextDependencyManager is told to DestroyBrowserContextServices,
97 // so they will be around when the ProfileSyncService is destroyed.
99 // DependsOn(FaviconServiceFactory::GetInstance());
102 ProfileSyncServiceFactory::~ProfileSyncServiceFactory() {
105 KeyedService* ProfileSyncServiceFactory::BuildServiceInstanceFor(
106 content::BrowserContext* context) const {
107 Profile* profile = static_cast<Profile*>(context);
109 SigninManagerBase* signin = SigninManagerFactory::GetForProfile(profile);
111 // Always create the GCMProfileService instance such that we can listen to
112 // the profile notifications and purge the GCM store when the profile is
113 // being signed out.
114 gcm::GCMProfileServiceFactory::GetForProfile(profile);
116 // TODO(atwilson): Change AboutSigninInternalsFactory to load on startup
117 // once http://crbug.com/171406 has been fixed.
118 AboutSigninInternalsFactory::GetForProfile(profile);
120 const GURL sync_service_url = ProfileSyncService::GetSyncServiceURL(
121 *base::CommandLine::ForCurrentProcess());
123 scoped_ptr<SupervisedUserSigninManagerWrapper> signin_wrapper(
124 new SupervisedUserSigninManagerWrapper(profile, signin));
125 std::string account_id = signin_wrapper->GetAccountIdToUse();
126 OAuth2TokenService::ScopeSet scope_set;
127 scope_set.insert(signin_wrapper->GetSyncScopeToUse());
128 ProfileOAuth2TokenService* token_service =
129 ProfileOAuth2TokenServiceFactory::GetForProfile(profile);
130 net::URLRequestContextGetter* url_request_context_getter =
131 profile->GetRequestContext();
133 // TODO(tim): Currently, AUTO/MANUAL settings refer to the *first* time sync
134 // is set up and *not* a browser restart for a manual-start platform (where
135 // sync has already been set up, and should be able to start without user
136 // intervention). We can get rid of the browser_default eventually, but
137 // need to take care that ProfileSyncService doesn't get tripped up between
138 // those two cases. Bug 88109.
139 browser_sync::ProfileSyncServiceStartBehavior behavior =
140 browser_defaults::kSyncAutoStarts ? browser_sync::AUTO_START
141 : browser_sync::MANUAL_START;
142 ProfileSyncService* pss = new ProfileSyncService(
143 scoped_ptr<ProfileSyncComponentsFactory>(
144 new ProfileSyncComponentsFactoryImpl(
145 profile, base::CommandLine::ForCurrentProcess(), sync_service_url,
146 token_service, url_request_context_getter)),
147 profile, signin_wrapper.Pass(), token_service, behavior);
149 pss->factory()->RegisterDataTypes(pss);
150 pss->Initialize();
151 return pss;
154 // static
155 bool ProfileSyncServiceFactory::HasProfileSyncService(Profile* profile) {
156 return GetInstance()->GetServiceForBrowserContext(profile, false) != NULL;