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

Unified Diff: android_webview/native/aw_autofill_client.h

Issue 1582353006: CountryNames: Separate data creation from usage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@571610_exposeCountryNamesToTesting
Patch Set: More Android fixes Created 4 years, 11 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
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 78cfa9637f6f3de21bdede71fab4bda03938292c..70a6d342b935cca4c1b2cb20acd9764773d9688c 100644
--- a/android_webview/native/aw_autofill_client.h
+++ b/android_webview/native/aw_autofill_client.h
@@ -102,6 +102,7 @@ class AwAutofillClient : public autofill::AutofillClient,
const base::string16& profile_full_name) override;
void OnFirstUserGestureObserved() override;
bool IsContextSecure(const GURL& form_origin) override;
+ const std::string& GetApplicationLocale() override;
void SuggestionSelected(JNIEnv* env,
const base::android::JavaParamRef<jobject>& obj,
@@ -125,6 +126,8 @@ class AwAutofillClient : public autofill::AutofillClient,
std::vector<autofill::Suggestion> suggestions_;
base::WeakPtr<autofill::AutofillPopupDelegate> delegate_;
+ const std::string application_locale_;
+
DISALLOW_COPY_AND_ASSIGN(AwAutofillClient);
};

Powered by Google App Engine
This is Rietveld 408576698