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..fd8c5173863c4c7570ecda321eca6012eee1533a |
--- /dev/null |
+++ b/chrome/browser/predictors/predictor_database.h |
@@ -0,0 +1,44 @@ |
+// Copyright (c) 2011 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(); |
+ |
+ AutocompleteActionPredictorTable* autocomplete_table(); |
+ |
+ // Useful 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_ |