1 // Copyright 2014 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/sync_global_error_factory.h"
8 #include "chrome/browser/browser_process.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/sync/profile_sync_service.h"
11 #include "chrome/browser/sync/profile_sync_service_factory.h"
12 #include "chrome/browser/sync/sync_global_error.h"
13 #include "chrome/browser/ui/global_error/global_error_service_factory.h"
14 #include "components/keyed_service/content/browser_context_dependency_manager.h"
17 #include "ash/shell.h"
20 SyncGlobalErrorFactory::SyncGlobalErrorFactory()
21 : BrowserContextKeyedServiceFactory(
23 BrowserContextDependencyManager::GetInstance()) {
24 DependsOn(ProfileSyncServiceFactory::GetInstance());
25 DependsOn(GlobalErrorServiceFactory::GetInstance());
28 SyncGlobalErrorFactory::~SyncGlobalErrorFactory() {}
31 SyncGlobalError
* SyncGlobalErrorFactory::GetForProfile(
33 return static_cast<SyncGlobalError
*>(
34 GetInstance()->GetServiceForBrowserContext(profile
, true));
38 SyncGlobalErrorFactory
* SyncGlobalErrorFactory::GetInstance() {
39 return Singleton
<SyncGlobalErrorFactory
>::get();
42 KeyedService
* SyncGlobalErrorFactory::BuildServiceInstanceFor(
43 content::BrowserContext
* context
) const {
45 if (ash::Shell::HasInstance())
49 Profile
* profile
= static_cast<Profile
*>(context
);
50 ProfileSyncService
* profile_sync_service
=
51 ProfileSyncServiceFactory::GetForProfile(profile
);
53 if (!profile_sync_service
)
56 SyncErrorController
* sync_error_controller
=
57 profile_sync_service
->sync_error_controller();
58 if (!sync_error_controller
)
61 return new SyncGlobalError(sync_error_controller
,
62 profile_sync_service
);