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

Unified Diff: components/autofill/core/browser/webdata/autofill_webdata_service.cc

Issue 1144153004: components: Remove use of MessageLoopProxy and deprecated MessageLoop APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 7 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: components/autofill/core/browser/webdata/autofill_webdata_service.cc
diff --git a/components/autofill/core/browser/webdata/autofill_webdata_service.cc b/components/autofill/core/browser/webdata/autofill_webdata_service.cc
index 8f3be4d5e8f2a5a4d3a6830e94ea560f83ec85ea..d354a079b7205e87e8fe23d9718ead54964a2ddd 100644
--- a/components/autofill/core/browser/webdata/autofill_webdata_service.cc
+++ b/components/autofill/core/browser/webdata/autofill_webdata_service.cc
@@ -5,8 +5,9 @@
#include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
#include "base/bind.h"
+#include "base/location.h"
#include "base/logging.h"
-#include "base/message_loop/message_loop_proxy.h"
+#include "base/single_thread_task_runner.h"
#include "base/stl_util.h"
#include "components/autofill/core/browser/autofill_country.h"
#include "components/autofill/core/browser/autofill_profile.h"
@@ -27,15 +28,14 @@ namespace autofill {
AutofillWebDataService::AutofillWebDataService(
scoped_refptr<WebDatabaseService> wdbs,
- scoped_refptr<base::MessageLoopProxy> ui_thread,
- scoped_refptr<base::MessageLoopProxy> db_thread,
+ scoped_refptr<base::SingleThreadTaskRunner> ui_thread,
+ scoped_refptr<base::SingleThreadTaskRunner> db_thread,
const ProfileErrorCallback& callback)
: WebDataServiceBase(wdbs, callback, ui_thread),
ui_thread_(ui_thread),
db_thread_(db_thread),
autofill_backend_(NULL),
weak_ptr_factory_(this) {
-
base::Closure on_changed_callback = Bind(
&AutofillWebDataService::NotifyAutofillMultipleChangedOnUIThread,
weak_ptr_factory_.GetWeakPtr());
@@ -45,16 +45,17 @@ AutofillWebDataService::AutofillWebDataService(
}
AutofillWebDataService::AutofillWebDataService(
- scoped_refptr<base::MessageLoopProxy> ui_thread,
- scoped_refptr<base::MessageLoopProxy> db_thread)
- : WebDataServiceBase(NULL, WebDataServiceBase::ProfileErrorCallback(),
- ui_thread),
+ scoped_refptr<base::SingleThreadTaskRunner> ui_thread,
+ scoped_refptr<base::SingleThreadTaskRunner> db_thread)
+ : WebDataServiceBase(NULL,
+ WebDataServiceBase::ProfileErrorCallback(),
+ ui_thread),
ui_thread_(ui_thread),
db_thread_(db_thread),
autofill_backend_(new AutofillWebDataBackendImpl(NULL,
- ui_thread_,
- db_thread_,
- base::Closure())),
+ ui_thread_,
+ db_thread_,
+ base::Closure())),
weak_ptr_factory_(this) {
}

Powered by Google App Engine
This is Rietveld 408576698