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

Unified Diff: android_webview/native/aw_autofill_client.h

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Rebase. Created 4 years, 3 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
« no previous file with comments | « no previous file | android_webview/native/aw_autofill_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
« no previous file with comments | « no previous file | android_webview/native/aw_autofill_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698