| Index: components/autofill/core/browser/autocomplete_history_manager_unittest.cc
|
| diff --git a/components/autofill/core/browser/autocomplete_history_manager_unittest.cc b/components/autofill/core/browser/autocomplete_history_manager_unittest.cc
|
| index 1bedd2757142c7402fda9cae99acbffe6af7ce0a..6e8b8f73c0d3dc3ef08cfd4fbebd1b5bf237fe8d 100644
|
| --- a/components/autofill/core/browser/autocomplete_history_manager_unittest.cc
|
| +++ b/components/autofill/core/browser/autocomplete_history_manager_unittest.cc
|
| @@ -5,12 +5,12 @@
|
| #include <vector>
|
|
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/message_loop/message_loop_proxy.h"
|
| #include "base/prefs/pref_service.h"
|
| #include "base/run_loop.h"
|
| #include "base/strings/string16.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "base/synchronization/waitable_event.h"
|
| +#include "base/thread_task_runner_handle.h"
|
| #include "components/autofill/core/browser/autocomplete_history_manager.h"
|
| #include "components/autofill/core/browser/autofill_external_delegate.h"
|
| #include "components/autofill/core/browser/autofill_manager.h"
|
| @@ -34,8 +34,8 @@ namespace {
|
| class MockWebDataService : public AutofillWebDataService {
|
| public:
|
| MockWebDataService()
|
| - : AutofillWebDataService(base::MessageLoopProxy::current(),
|
| - base::MessageLoopProxy::current()) {}
|
| + : AutofillWebDataService(base::ThreadTaskRunnerHandle::Get(),
|
| + base::ThreadTaskRunnerHandle::Get()) {}
|
|
|
| MOCK_METHOD1(AddFormFields, void(const std::vector<FormFieldData>&));
|
|
|
|
|