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

Unified Diff: components/webdata/common/web_database.cc

Issue 2498053002: Add field to monitor last visited time for each search engine (Closed)
Patch Set: Add unit test for last_visited field. Created 4 years, 1 month 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: components/webdata/common/web_database.cc
diff --git a/components/webdata/common/web_database.cc b/components/webdata/common/web_database.cc
index 5cb4c42399ec8eca76a2438d0ca35f11bfc3e5e7..04b4d4fe1ec47bb8c8951ccde777d01ad275e671 100644
--- a/components/webdata/common/web_database.cc
+++ b/components/webdata/common/web_database.cc
@@ -13,13 +13,13 @@
// corresponding changes must happen in the unit tests, and new migration test
// added. See |WebDatabaseMigrationTest::kCurrentTestedVersionNumber|.
// static
-const int WebDatabase::kCurrentVersionNumber = 68;
+const int WebDatabase::kCurrentVersionNumber = 69;
const int WebDatabase::kDeprecatedVersionNumber = 51;
namespace {
-const int kCompatibleVersionNumber = 68;
+const int kCompatibleVersionNumber = 69;
Peter Kasting 2016/11/21 03:35:08 I wouldn't update this; see comments elsewhere.
ltian 2016/11/28 22:08:02 Sorry I am a little confused about when should cod
Peter Kasting 2016/11/28 22:20:24 From a chat we had a few weeks ago: "The compatibl
// Change the version number and possibly the compatibility version of
// |meta_table_|.

Powered by Google App Engine
This is Rietveld 408576698