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

Unified Diff: chrome/browser/webdata/web_database_migration_unittest.cc

Issue 10227014: Remove the very old code that migrated password data from the WebDataService to PasswordStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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/webdata/web_database_migration_unittest.cc
===================================================================
--- chrome/browser/webdata/web_database_migration_unittest.cc (revision 133948)
+++ chrome/browser/webdata/web_database_migration_unittest.cc (working copy)
@@ -226,7 +226,7 @@
// Check that expected tables are present.
EXPECT_TRUE(connection.DoesTableExist("meta"));
EXPECT_TRUE(connection.DoesTableExist("keywords"));
- EXPECT_TRUE(connection.DoesTableExist("logins"));
+ EXPECT_FALSE(connection.DoesTableExist("logins")); // This one is obsolete.
Lei Zhang 2012/04/26 19:44:49 You may want to put a short explanation here to ex
Mike Mammarella 2012/04/26 20:58:18 Done.
EXPECT_TRUE(connection.DoesTableExist("web_app_icons"));
EXPECT_TRUE(connection.DoesTableExist("web_apps"));
EXPECT_TRUE(connection.DoesTableExist("autofill"));

Powered by Google App Engine
This is Rietveld 408576698