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

Unified Diff: android_webview/browser/aw_form_database_service.cc

Issue 16174013: Remove dependency of WebData on content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 7 years, 6 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 | « no previous file | chrome/browser/chromeos/login/oauth_login_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_form_database_service.cc
diff --git a/android_webview/browser/aw_form_database_service.cc b/android_webview/browser/aw_form_database_service.cc
index 951f82b83bda5802e7f4947bde6c1129f2320ca8..4fa8b40f4c3496ddf16c5b78d8a565edc67080c4 100644
--- a/android_webview/browser/aw_form_database_service.cc
+++ b/android_webview/browser/aw_form_database_service.cc
@@ -29,7 +29,8 @@ AwFormDatabaseService::AwFormDatabaseService(const base::FilePath path)
completion_(false, false) {
web_database_ = new WebDatabaseService(path.Append(kWebDataFilename),
- BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI));
+ BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI),
+ BrowserThread::GetMessageLoopProxyForThread(BrowserThread::DB));
web_database_->AddTable(
scoped_ptr<WebDatabaseTable>(new autofill::AutofillTable(
l10n_util::GetDefaultLocale())));
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/oauth_login_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698