Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5521)

Unified Diff: chrome/browser/predictors/predictor_database.h

Issue 9610006: Refactoring, moving and renaming the NetworkActionPredictor. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Changing DB to PKS from RefcountedPKS and addressing comments. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698