• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2013 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.
4 
5 #include "chrome/browser/profiles/startup_task_runner_service_factory.h"
6 
7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/browser/profiles/startup_task_runner_service.h"
9 #include "components/keyed_service/content/browser_context_dependency_manager.h"
10 
StartupTaskRunnerServiceFactory()11 StartupTaskRunnerServiceFactory::StartupTaskRunnerServiceFactory()
12     : BrowserContextKeyedServiceFactory(
13         "StartupTaskRunnerServiceFactory",
14         BrowserContextDependencyManager::GetInstance()) {
15 }
16 
~StartupTaskRunnerServiceFactory()17 StartupTaskRunnerServiceFactory::~StartupTaskRunnerServiceFactory() {}
18 
19 // static
GetForProfile(Profile * profile)20 StartupTaskRunnerService* StartupTaskRunnerServiceFactory::GetForProfile(
21     Profile* profile) {
22   return static_cast<StartupTaskRunnerService*>(
23       GetInstance()->GetServiceForBrowserContext(profile, true));
24 }
25 
26 // static
27 StartupTaskRunnerServiceFactory*
GetInstance()28     StartupTaskRunnerServiceFactory::GetInstance() {
29   return Singleton<StartupTaskRunnerServiceFactory>::get();
30 }
31 
BuildServiceInstanceFor(content::BrowserContext * profile) const32 KeyedService* StartupTaskRunnerServiceFactory::BuildServiceInstanceFor(
33     content::BrowserContext* profile) const {
34   return new StartupTaskRunnerService(static_cast<Profile*>(profile));
35 }
36