blob: 6cc76f32869dc70cb95d3083d820adbc29f33ec6 [file] [log] [blame]
// 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/suggestions/suggestions_service_factory.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 (!search::IsInstantExtendedAPIEnabled())
return NULL;
return static_cast<InstantService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
InstantServiceFactory* InstantServiceFactory::GetInstance() {
return base::Singleton<InstantServiceFactory>::get();
}
InstantServiceFactory::InstantServiceFactory()
: BrowserContextKeyedServiceFactory(
"InstantService",
BrowserContextDependencyManager::GetInstance()) {
DependsOn(suggestions::SuggestionsServiceFactory::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 search::IsInstantExtendedAPIEnabled()
? new InstantService(static_cast<Profile*>(profile))
: NULL;
}