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

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

Issue 382703002: Remove unused SQLLite tables from WebData (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 2 Created 6 years, 5 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
« no previous file with comments | « chrome/browser/webdata/web_apps_table_unittest.cc ('k') | chrome/browser/webdata/web_intents_table.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/webdata/web_data_service_factory.cc
diff --git a/chrome/browser/webdata/web_data_service_factory.cc b/chrome/browser/webdata/web_data_service_factory.cc
index c704d6dcdb0f949d2daf8a84fa660497e14b16f1..8020fb8be6f71c14448da6991ce58fae1d89c5ab 100644
--- a/chrome/browser/webdata/web_data_service_factory.cc
+++ b/chrome/browser/webdata/web_data_service_factory.cc
@@ -11,8 +11,6 @@
#include "chrome/browser/sync/glue/sync_start_util.h"
#include "chrome/browser/ui/profile_error_dialog.h"
#include "chrome/browser/webdata/autocomplete_syncable_service.h"
-#include "chrome/browser/webdata/web_apps_table.h"
-#include "chrome/browser/webdata/web_intents_table.h"
#include "components/autofill/core/browser/autofill_country.h"
#include "components/autofill/core/browser/webdata/autofill_profile_syncable_service.h"
#include "components/autofill/core/browser/webdata/autofill_table.h"
@@ -93,12 +91,6 @@ WebDataServiceWrapper::WebDataServiceWrapper(Profile* profile) {
web_database_->AddTable(scoped_ptr<WebDatabaseTable>(new LoginsTable()));
web_database_->AddTable(
scoped_ptr<WebDatabaseTable>(new TokenServiceTable()));
- // TODO(caitkp): Add a migration to delete the SQL table used by
- // WebIntentsTable, then remove this.
- web_database_->AddTable(scoped_ptr<WebDatabaseTable>(new WebAppsTable()));
- // TODO(thakis): Add a migration to delete the SQL table used by
- // WebIntentsTable, then remove this.
- web_database_->AddTable(scoped_ptr<WebDatabaseTable>(new WebIntentsTable()));
web_database_->LoadDatabase();
« no previous file with comments | « chrome/browser/webdata/web_apps_table_unittest.cc ('k') | chrome/browser/webdata/web_intents_table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698