diff options
author | brettw <brettw@chromium.org> | 2015-03-02 15:53:02 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-02 23:54:02 +0000 |
commit | dfbb9b2b2293b328846f870679cc59ded630fae4 (patch) | |
tree | d467d98245b3faad2a2fa3ff5ccd39ee13889184 /components/webdata/common | |
parent | bbaa913d45afe123f2e256a48deaf58dbdb3181c (diff) | |
download | chromium_src-dfbb9b2b2293b328846f870679cc59ded630fae4.zip chromium_src-dfbb9b2b2293b328846f870679cc59ded630fae4.tar.gz chromium_src-dfbb9b2b2293b328846f870679cc59ded630fae4.tar.bz2 |
Add recipient name to server autofill profile database
This adds the recipient name to the server profile database. This was added to the schema since the original check-in.
Review URL: https://codereview.chromium.org/949563003
Cr-Commit-Position: refs/heads/master@{#318804}
Diffstat (limited to 'components/webdata/common')
-rw-r--r-- | components/webdata/common/web_database.cc | 2 | ||||
-rw-r--r-- | components/webdata/common/web_database_migration_unittest.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/webdata/common/web_database.cc b/components/webdata/common/web_database.cc index 42837718..675f7c5 100644 --- a/components/webdata/common/web_database.cc +++ b/components/webdata/common/web_database.cc @@ -14,7 +14,7 @@ // corresponding changes must happen in the unit tests, and new migration test // added. See |WebDatabaseMigrationTest::kCurrentTestedVersionNumber|. // static -const int WebDatabase::kCurrentVersionNumber = 62; +const int WebDatabase::kCurrentVersionNumber = 63; const int WebDatabase::kDeprecatedVersionNumber = 51; diff --git a/components/webdata/common/web_database_migration_unittest.cc b/components/webdata/common/web_database_migration_unittest.cc index ddbe506..765883b 100644 --- a/components/webdata/common/web_database_migration_unittest.cc +++ b/components/webdata/common/web_database_migration_unittest.cc @@ -132,7 +132,7 @@ class WebDatabaseMigrationTest : public testing::Test { DISALLOW_COPY_AND_ASSIGN(WebDatabaseMigrationTest); }; -const int WebDatabaseMigrationTest::kCurrentTestedVersionNumber = 62; +const int WebDatabaseMigrationTest::kCurrentTestedVersionNumber = 63; void WebDatabaseMigrationTest::LoadDatabase( const base::FilePath::StringType& file) { |