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"
7 #include "chrome/browser/browser_process.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/sync/profile_sync_service.h"
10 #include "chrome/browser/sync/profile_sync_service_factory.h"
11 #include "chrome/browser/sync/sync_global_error.h"
12 #include "chrome/browser/ui/global_error/global_error_service_factory.h"
13 #include "components/keyed_service/content/browser_context_dependency_manager.h"
16 #include "ash/shell.h"
19 SyncGlobalErrorFactory::SyncGlobalErrorFactory()
20 : BrowserContextKeyedServiceFactory(
22 BrowserContextDependencyManager::GetInstance()) {
23 DependsOn(ProfileSyncServiceFactory::GetInstance());
24 DependsOn(GlobalErrorServiceFactory::GetInstance());
27 SyncGlobalErrorFactory::~SyncGlobalErrorFactory() {}
30 SyncGlobalError
* SyncGlobalErrorFactory::GetForProfile(
32 return static_cast<SyncGlobalError
*>(
33 GetInstance()->GetServiceForBrowserContext(profile
, true));
37 SyncGlobalErrorFactory
* SyncGlobalErrorFactory::GetInstance() {
38 return Singleton
<SyncGlobalErrorFactory
>::get();
41 KeyedService
* SyncGlobalErrorFactory::BuildServiceInstanceFor(
42 content::BrowserContext
* context
) const {
44 if (ash::Shell::HasInstance())
48 Profile
* profile
= static_cast<Profile
*>(context
);
49 ProfileSyncService
* profile_sync_service
=
50 ProfileSyncServiceFactory::GetForProfile(profile
);
52 if (!profile_sync_service
)
55 SyncErrorController
* sync_error_controller
=
56 profile_sync_service
->sync_error_controller();
57 if (!sync_error_controller
)
60 return new SyncGlobalError(sync_error_controller
,
61 profile_sync_service
);