instant_service_factory.cc revision c2e0dbddbe15c98d52c4786dac06cb8952a8ae6d
1// Copyright 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/search/instant_service_factory.h"
6
7#include "chrome/browser/profiles/incognito_helpers.h"
8#include "chrome/browser/profiles/profile.h"
9#include "chrome/browser/profiles/profile_dependency_manager.h"
10#include "chrome/browser/search/instant_service.h"
11
12// static
13InstantService* InstantServiceFactory::GetForProfile(Profile* profile) {
14  return static_cast<InstantService*>(
15      GetInstance()->GetServiceForProfile(profile, true));
16}
17
18// static
19InstantServiceFactory* InstantServiceFactory::GetInstance() {
20  return Singleton<InstantServiceFactory>::get();
21}
22
23InstantServiceFactory::InstantServiceFactory()
24    : ProfileKeyedServiceFactory("InstantService",
25                                 ProfileDependencyManager::GetInstance()) {
26  // No dependencies.
27}
28
29InstantServiceFactory::~InstantServiceFactory() {
30}
31
32content::BrowserContext* InstantServiceFactory::GetBrowserContextToUse(
33    content::BrowserContext* context) const {
34  return chrome::GetBrowserContextOwnInstanceInIncognito(context);
35}
36
37ProfileKeyedService* InstantServiceFactory::BuildServiceInstanceFor(
38    content::BrowserContext* profile) const {
39  return new InstantService(static_cast<Profile*>(profile));
40}
41