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

Unified Diff: components/password_manager/core/browser/test_password_store.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/password_manager/core/browser/test_password_store.cc
diff --git a/components/password_manager/core/browser/test_password_store.cc b/components/password_manager/core/browser/test_password_store.cc
index 60f2536ba5af16a3393c15ca38e32a81bfdad1d2..b54b99c82edb11c6581f431230ffb0781f557f0f 100644
--- a/components/password_manager/core/browser/test_password_store.cc
+++ b/components/password_manager/core/browser/test_password_store.cc
@@ -4,13 +4,14 @@
#include "components/password_manager/core/browser/test_password_store.h"
+#include "base/thread_task_runner_handle.h"
#include "components/autofill/core/common/password_form.h"
namespace password_manager {
TestPasswordStore::TestPasswordStore()
- : PasswordStore(base::MessageLoopProxy::current(),
- base::MessageLoopProxy::current()) {
+ : PasswordStore(base::ThreadTaskRunnerHandle::Get(),
+ base::ThreadTaskRunnerHandle::Get()) {
}
TestPasswordStore::~TestPasswordStore() {

Powered by Google App Engine
This is Rietveld 408576698