blob: 90b3e31eb87e13b74c2e630604261c201e36ce80 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/recovery/recovery_install_global_error_factory.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/recovery/recovery_install_global_error.h"
#include "chrome/browser/ui/global_error/global_error_service_factory.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
RecoveryInstallGlobalErrorFactory::RecoveryInstallGlobalErrorFactory()
: BrowserContextKeyedServiceFactory(
"RecoveryInstallGlobalError",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(GlobalErrorServiceFactory::GetInstance());
}
RecoveryInstallGlobalErrorFactory::~RecoveryInstallGlobalErrorFactory() {}
// static
RecoveryInstallGlobalError*
RecoveryInstallGlobalErrorFactory::GetForProfile(Profile* profile) {
return static_cast<RecoveryInstallGlobalError*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
RecoveryInstallGlobalErrorFactory*
RecoveryInstallGlobalErrorFactory::GetInstance() {
return base::Singleton<RecoveryInstallGlobalErrorFactory>::get();
}
KeyedService* RecoveryInstallGlobalErrorFactory::BuildServiceInstanceFor(
content::BrowserContext* context) const {
#if defined(OS_WIN) || defined(OS_MACOSX)
return new RecoveryInstallGlobalError(static_cast<Profile*>(context));
#else
return NULL;
#endif
}