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

Unified Diff: chrome/browser/history/shortcuts_database.h

Issue 213433002: Migrate old Shortcuts DB data to conform to new type values (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ready for Review Created 6 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/history/shortcuts_database.h
diff --git a/chrome/browser/history/shortcuts_database.h b/chrome/browser/history/shortcuts_database.h
index a3cbfdb5b4820deb5f2df8b62a595b0569d8e71e..a29331ae60095b6c67942052cdde5eb93980738a 100644
--- a/chrome/browser/history/shortcuts_database.h
+++ b/chrome/browser/history/shortcuts_database.h
@@ -14,6 +14,7 @@
#include "base/memory/ref_counted.h"
#include "base/strings/string16.h"
#include "sql/connection.h"
+#include "sql/meta_table.h"
#include "url/gurl.h"
namespace history {
@@ -126,6 +127,8 @@ class ShortcutsDatabase : public base::RefCountedThreadSafe<ShortcutsDatabase> {
sql::Connection db_;
base::FilePath database_path_;
+ sql::MetaTable meta_table_;
+
static const base::FilePath::CharType kShortcutsDatabaseName[];
DISALLOW_COPY_AND_ASSIGN(ShortcutsDatabase);

Powered by Google App Engine
This is Rietveld 408576698