This source file includes following definitions.
- GetForProfile
- GetInstance
- GetBrowserContextToUse
- BuildServiceInstanceFor
#include "chrome/browser/search/suggestions/suggestions_service_factory.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/profiles/incognito_helpers.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search/suggestions/suggestions_service.h"
#include "chrome/common/pref_names.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/user_prefs/pref_registry_syncable.h"
namespace suggestions {
SuggestionsService* SuggestionsServiceFactory::GetForProfile(Profile* profile) {
if (!SuggestionsService::IsEnabled())
return NULL;
return static_cast<SuggestionsService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
SuggestionsServiceFactory* SuggestionsServiceFactory::GetInstance() {
return Singleton<SuggestionsServiceFactory>::get();
}
SuggestionsServiceFactory::SuggestionsServiceFactory()
: BrowserContextKeyedServiceFactory(
"SuggestionsService",
BrowserContextDependencyManager::GetInstance()) {
}
SuggestionsServiceFactory::~SuggestionsServiceFactory() {
}
content::BrowserContext* SuggestionsServiceFactory::GetBrowserContextToUse(
content::BrowserContext* context) const {
return chrome::GetBrowserContextRedirectedInIncognito(context);
}
KeyedService* SuggestionsServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return new SuggestionsService(static_cast<Profile*>(profile));
}
}