| Index: chrome/browser/predictors/predictor_database.h
|
| diff --git a/chrome/browser/predictors/predictor_database.h b/chrome/browser/predictors/predictor_database.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6d9ff031ff01e90bc6739f32a04ca59e9182759c
|
| --- /dev/null
|
| +++ b/chrome/browser/predictors/predictor_database.h
|
| @@ -0,0 +1,44 @@
|
| +// Copyright (c) 2012 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.
|
| +
|
| +#ifndef CHROME_BROWSER_PREDICTORS_PREDICTOR_DATABASE_H_
|
| +#define CHROME_BROWSER_PREDICTORS_PREDICTOR_DATABASE_H_
|
| +#pragma once
|
| +
|
| +#include "base/memory/ref_counted.h"
|
| +#include "chrome/browser/profiles/profile_keyed_service.h"
|
| +
|
| +class Profile;
|
| +
|
| +namespace sql {
|
| +class Connection;
|
| +}
|
| +
|
| +namespace predictors {
|
| +
|
| +class AutocompleteActionPredictorTable;
|
| +class PredictorDatabaseInternal;
|
| +
|
| +class PredictorDatabase : public ProfileKeyedService {
|
| + public:
|
| + explicit PredictorDatabase(Profile* profile);
|
| + virtual ~PredictorDatabase();
|
| +
|
| + scoped_refptr<AutocompleteActionPredictorTable> autocomplete_table();
|
| +
|
| + // Used for testing.
|
| + sql::Connection* GetDatabase();
|
| +
|
| + private:
|
| + // ProfileKeyedService
|
| + virtual void Shutdown() OVERRIDE;
|
| +
|
| + scoped_refptr<PredictorDatabaseInternal> db_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(PredictorDatabase);
|
| +};
|
| +
|
| +} // namespace predictors
|
| +
|
| +#endif // CHROME_BROWSER_PREDICTORS_PREDICTOR_DATABASE_H_
|
|
|