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

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

Issue 207643002: Create new Autofill tables as part of DB migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/logins_table.cc
diff --git a/chrome/browser/webdata/logins_table.cc b/chrome/browser/webdata/logins_table.cc
index cfb24ab79710fe63b9875649cf800c621b296a46..ff14bcba8a6bef11099b52fea44b063ef1ea8ca1 100644
--- a/chrome/browser/webdata/logins_table.cc
+++ b/chrome/browser/webdata/logins_table.cc
@@ -29,9 +29,7 @@ WebDatabaseTable::TypeKey LoginsTable::GetTypeKey() const {
return GetKey();
}
-bool LoginsTable::Init(sql::Connection* db, sql::MetaTable* meta_table) {
- WebDatabaseTable::Init(db, meta_table);
-
+bool LoginsTable::CreateTablesIfNecessary() {
if (db_->DoesTableExist("logins")) {
// We don't check for success. It doesn't matter that much.
// If we fail we'll just try again later anyway.

Powered by Google App Engine
This is Rietveld 408576698