| Index: components/autofill/core/browser/test_autofill_client.h
|
| diff --git a/components/autofill/core/browser/test_autofill_client.h b/components/autofill/core/browser/test_autofill_client.h
|
| index a9f2a86b33d822194e81da46e94e45f13e4e8919..e936e42e53fc79a9f2b6fd6c51204f995b989e30 100644
|
| --- a/components/autofill/core/browser/test_autofill_client.h
|
| +++ b/components/autofill/core/browser/test_autofill_client.h
|
| @@ -6,9 +6,7 @@
|
| #define COMPONENTS_AUTOFILL_CORE_BROWSER_TEST_AUTOFILL_CLIENT_H_
|
|
|
| #include <memory>
|
| -#include <string>
|
| #include <utility>
|
| -#include <vector>
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/i18n/rtl.h"
|
| @@ -31,7 +29,7 @@ class TestAutofillClient : public AutofillClient {
|
| PersonalDataManager* GetPersonalDataManager() override;
|
| scoped_refptr<AutofillWebDataService> GetDatabase() override;
|
| PrefService* GetPrefs() override;
|
| - syncer::SyncService* GetSyncService() override;
|
| + sync_driver::SyncService* GetSyncService() override;
|
| IdentityProvider* GetIdentityProvider() override;
|
| rappor::RapporService* GetRapporService() override;
|
| void ShowAutofillSettings() override;
|
| @@ -73,7 +71,7 @@ class TestAutofillClient : public AutofillClient {
|
|
|
| void set_is_context_secure(bool is_context_secure) {
|
| is_context_secure_ = is_context_secure;
|
| - }
|
| + };
|
|
|
| void SetPrefs(std::unique_ptr<PrefService> prefs) {
|
| prefs_ = std::move(prefs);
|
|
|