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"
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
{
15 PredictorDatabase
* PredictorDatabaseFactory::GetForProfile(Profile
* profile
) {
16 return static_cast<PredictorDatabase
*>(
17 GetInstance()->GetServiceForBrowserContext(profile
, true));
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