chromium/chrome/browser/predictors/predictor_database_factory.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/predictors/predictor_database_factory.h"

#include <utility>

#include "base/functional/bind.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/thread_pool.h"
#include "chrome/browser/predictors/predictor_database.h"
#include "chrome/browser/profiles/profile.h"

namespace predictors {

// static
PredictorDatabase* PredictorDatabaseFactory::GetForProfile(Profile* profile) {}

// static
PredictorDatabaseFactory* PredictorDatabaseFactory::GetInstance() {}

PredictorDatabaseFactory::PredictorDatabaseFactory()
    :{}

PredictorDatabaseFactory::~PredictorDatabaseFactory() = default;

std::unique_ptr<KeyedService>
PredictorDatabaseFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* profile) const {}

}  // namespace predictors