Index: android_webview/native/aw_autofill_client.h |
diff --git a/android_webview/native/aw_autofill_client.h b/android_webview/native/aw_autofill_client.h |
index 8c0f8060495aa3418a0bb6c35996e207c456739d..92e1af913c17a48bceb96103d59d49fedf519799 100644 |
--- a/android_webview/native/aw_autofill_client.h |
+++ b/android_webview/native/aw_autofill_client.h |
@@ -6,6 +6,8 @@ |
#define ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ |
#include <jni.h> |
+#include <memory> |
+#include <string> |
#include <vector> |
#include "base/android/jni_weak_ref.h" |
@@ -36,7 +38,7 @@ namespace gfx { |
class RectF; |
} |
-namespace sync_driver { |
+namespace syncer { |
class SyncService; |
} |
@@ -64,7 +66,7 @@ class AwAutofillClient : public autofill::AutofillClient, |
autofill::PersonalDataManager* GetPersonalDataManager() override; |
scoped_refptr<autofill::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; |
@@ -112,7 +114,7 @@ class AwAutofillClient : public autofill::AutofillClient, |
jint position); |
private: |
- AwAutofillClient(content::WebContents* web_contents); |
+ explicit AwAutofillClient(content::WebContents* web_contents); |
friend class content::WebContentsUserData<AwAutofillClient>; |
void ShowAutofillPopupImpl( |