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 e936e42e53fc79a9f2b6fd6c51204f995b989e30..a9f2a86b33d822194e81da46e94e45f13e4e8919 100644 |
--- a/components/autofill/core/browser/test_autofill_client.h |
+++ b/components/autofill/core/browser/test_autofill_client.h |
@@ -6,7 +6,9 @@ |
#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" |
@@ -29,7 +31,7 @@ class TestAutofillClient : public AutofillClient { |
PersonalDataManager* GetPersonalDataManager() override; |
scoped_refptr<AutofillWebDataService> GetDatabase() override; |
PrefService* GetPrefs() override; |
- sync_driver::SyncService* GetSyncService() override; |
+ syncer::SyncService* GetSyncService() override; |
IdentityProvider* GetIdentityProvider() override; |
rappor::RapporService* GetRapporService() override; |
void ShowAutofillSettings() override; |
@@ -71,7 +73,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); |