Added affiliation IDs, that in future will be used to determine user affiliation...
[chromium-blink-merge.git] / chrome / browser / predictors / predictor_database_factory.cc
blob9b69f266af7872c4a488a1bfc4ddab553d170f9a
1 // Copyright (c) 2012 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.
5 #include "chrome/browser/predictors/predictor_database_factory.h"
7 #include "base/bind.h"
8 #include "chrome/browser/predictors/predictor_database.h"
9 #include "chrome/browser/profiles/profile.h"
10 #include "components/keyed_service/content/browser_context_dependency_manager.h"
12 namespace predictors {
14 // static
15 PredictorDatabase* PredictorDatabaseFactory::GetForProfile(Profile* profile) {
16 return static_cast<PredictorDatabase*>(
17 GetInstance()->GetServiceForBrowserContext(profile, true));
20 // static
21 PredictorDatabaseFactory* PredictorDatabaseFactory::GetInstance() {
22 return Singleton<PredictorDatabaseFactory>::get();
25 PredictorDatabaseFactory::PredictorDatabaseFactory()
26 : BrowserContextKeyedServiceFactory(
27 "PredictorDatabase", BrowserContextDependencyManager::GetInstance()) {
30 PredictorDatabaseFactory::~PredictorDatabaseFactory() {
33 KeyedService* PredictorDatabaseFactory::BuildServiceInstanceFor(
34 content::BrowserContext* profile) const {
35 return new PredictorDatabase(static_cast<Profile*>(profile));
38 } // namespace predictors