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

Unified Diff: chrome/browser/webdata/web_database.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.cc
===================================================================
--- chrome/browser/webdata/web_database.cc (revision 133948)
+++ chrome/browser/webdata/web_database.cc (working copy)
@@ -131,6 +131,9 @@
// Create the tables.
autofill_table_.reset(new AutofillTable(&db_, &meta_table_));
keyword_table_.reset(new KeywordTable(&db_, &meta_table_));
+ // TODO(mdm): We only really need the LoginsTable on Windows for IE7 password
+ // access, but for now, we still create it on all platforms since it deletes
+ // the old logins table. We can remove this after a while, e.g. in M22 or so.
logins_table_.reset(new LoginsTable(&db_, &meta_table_));
token_service_table_.reset(new TokenServiceTable(&db_, &meta_table_));
web_apps_table_.reset(new WebAppsTable(&db_, &meta_table_));

Powered by Google App Engine
This is Rietveld 408576698