diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-28 06:35:02 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-28 06:35:02 +0000 |
commit | efa4ba813a3e7fb715d9a70ffa9d0c66a91c10df (patch) | |
tree | f9ad83f165c9326ae95f2e2624e354ef13ffac96 /components/webdata/common/web_database.cc | |
parent | 85cd2fd5d211eb560b0dd20c94929173b46f82eb (diff) | |
download | chromium_src-efa4ba813a3e7fb715d9a70ffa9d0c66a91c10df.zip chromium_src-efa4ba813a3e7fb715d9a70ffa9d0c66a91c10df.tar.gz chromium_src-efa4ba813a3e7fb715d9a70ffa9d0c66a91c10df.tar.bz2 |
Revert of [Autofill] Merge the autofill_dates table into the autofill table. (https://codereview.chromium.org/166313002/)
Reason for revert:
Broke the GeneralMixMemoryTest.* target from the performance_ui_tests suite.
BUG=347340
Original issue's description:
> [Autofill] Merge the autofill_dates table into the autofill table.
>
> We already only store two timestamps per autocomplete entry: creation and last
> use. However, we used to store an arbitrary number of timestamps, and the table
> structure was designed to support that. Now that that's no longer the case, we
> can dramatically simplify the code.
>
> The one cost to only keeping two timestamps, rather than all of them, is that
> it's no longer possible to perfectly undo changes in response to a user clearing
> Autofill data for e.g. the last week. In practice, users are more likely to
> care about having less data stored on disk and traversing the Sync pipes than
> about having perfect frequency information after partially clearing the Autofill
> data.
>
> BUG=118696
> TEST=unit_tests
> R=estade@chromium.org
>
> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=253380
TBR=estade@chromium.org,pkasting@chromium.org,phajdan.jr@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=118696
Review URL: https://codereview.chromium.org/184183002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/webdata/common/web_database.cc')
-rw-r--r-- | components/webdata/common/web_database.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/webdata/common/web_database.cc b/components/webdata/common/web_database.cc index 230eae1..44b6790 100644 --- a/components/webdata/common/web_database.cc +++ b/components/webdata/common/web_database.cc @@ -14,11 +14,11 @@ // corresponding changes must happen in the unit tests, and new migration test // added. See |WebDatabaseMigrationTest::kCurrentTestedVersionNumber|. // static -const int WebDatabase::kCurrentVersionNumber = 55; +const int WebDatabase::kCurrentVersionNumber = 54; namespace { -const int kCompatibleVersionNumber = 55; +const int kCompatibleVersionNumber = 54; // Change the version number and possibly the compatibility version of // |meta_table_|. |