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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContents.java

Issue 306053008: Rename AutofillManagerDelegate to AutofillClient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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/java/src/org/chromium/android_webview/AwContents.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContents.java b/android_webview/java/src/org/chromium/android_webview/AwContents.java
index 3d2282f61693f450822298614e61e787826372da..d43b0bfdce0e446e302b8c97e98f5bd34a869eff 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContents.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java
@@ -215,7 +215,7 @@ public class AwContents {
private float mContentWidthDip;
private float mContentHeightDip;
- private AwAutofillManagerDelegate mAwAutofillManagerDelegate;
+ private AwAutofillClient mAwAutofillClient;
private ComponentCallbacks2 mComponentCallbacks;
@@ -1796,8 +1796,8 @@ public class AwContents {
* @see android.webkit.WebView#clearFormData()
*/
public void hideAutofillPopup() {
- if (mAwAutofillManagerDelegate != null) {
- mAwAutofillManagerDelegate.hideAutofillPopup();
+ if (mAwAutofillClient != null) {
+ mAwAutofillClient.hideAutofillPopup();
}
}
@@ -1978,9 +1978,9 @@ public class AwContents {
}
@CalledByNative
- private void setAwAutofillManagerDelegate(AwAutofillManagerDelegate delegate) {
- mAwAutofillManagerDelegate = delegate;
- delegate.init(mContentViewCore);
+ private void setAwAutofillClient(AwAutofillClient client) {
+ mAwAutofillClient = client;
+ client.init(mContentViewCore);
}
@CalledByNative

Powered by Google App Engine
This is Rietveld 408576698