blob: e20d92eb9b0ec64e0e9ae19c16931bfa283439d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright 2013 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/search/instant_service_factory.h"
#include "chrome/browser/history/top_sites_factory.h"
#include "chrome/browser/profiles/incognito_helpers.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search/instant_service.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/themes/theme_service_factory.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/search/search.h"
// static
InstantService* InstantServiceFactory::GetForProfile(Profile* profile) {
if (!chrome::IsInstantExtendedAPIEnabled())
return NULL;
return static_cast<InstantService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
InstantServiceFactory* InstantServiceFactory::GetInstance() {
return Singleton<InstantServiceFactory>::get();
}
InstantServiceFactory::InstantServiceFactory()
: BrowserContextKeyedServiceFactory(
"InstantService",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(TemplateURLServiceFactory::GetInstance());
#if defined(ENABLE_THEMES)
DependsOn(ThemeServiceFactory::GetInstance());
#endif
DependsOn(TopSitesFactory::GetInstance());
}
InstantServiceFactory::~InstantServiceFactory() {
}
content::BrowserContext* InstantServiceFactory::GetBrowserContextToUse(
content::BrowserContext* context) const {
return chrome::GetBrowserContextOwnInstanceInIncognito(context);
}
KeyedService* InstantServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return chrome::IsInstantExtendedAPIEnabled() ?
new InstantService(static_cast<Profile*>(profile)) : NULL;
}
|