| Index: chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogGlue.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogGlue.java b/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogGlue.java
|
| index 3a65d7b0eeefb237b04c965b540c92e16b3a7f14..22b970d259c8bd7723841816695aa8a88bf6057e 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogGlue.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogGlue.java
|
| @@ -23,21 +23,20 @@ public class AutofillDialogGlue implements AutofillDialogDelegate,
|
| private final AutofillDialogAccountHelper mAccountHelper;
|
|
|
| public AutofillDialogGlue(int nativeAutofillDialogViewAndroid, NativeWindow nativeWindow,
|
| - String useBillingForShippingText, String saveLocallyText) {
|
| + String saveLocallyText) {
|
| mNativeDialogPopup = nativeAutofillDialogViewAndroid;
|
| mAccountHelper = new AutofillDialogAccountHelper(this, nativeWindow.getContext());
|
|
|
| - mAutofillDialog = new AutofillDialog(
|
| - nativeWindow.getContext(), this, useBillingForShippingText, saveLocallyText);
|
| + mAutofillDialog = new AutofillDialog(nativeWindow.getContext(), this, saveLocallyText);
|
| mAutofillDialog.show();
|
| }
|
|
|
| @CalledByNative
|
| private static AutofillDialogGlue create(int nativeAutofillDialogViewAndroid,
|
| NativeWindow nativeWindow,
|
| - String useBillingForShippingText, String saveLocallyText) {
|
| + String saveLocallyText) {
|
| return new AutofillDialogGlue(nativeAutofillDialogViewAndroid, nativeWindow,
|
| - useBillingForShippingText, saveLocallyText);
|
| + saveLocallyText);
|
| }
|
|
|
| /**
|
| @@ -99,14 +98,6 @@ public class AutofillDialogGlue implements AutofillDialogDelegate,
|
| }
|
|
|
| /**
|
| - * @see AutofillDialog#shouldUseBillingForShipping()
|
| - */
|
| - @CalledByNative
|
| - private boolean shouldUseBillingForShipping() {
|
| - return mAutofillDialog.shouldUseBillingForShipping();
|
| - }
|
| -
|
| - /**
|
| * @see AutofillDialog#shouldSaveDetailsLocally()
|
| */
|
| @CalledByNative
|
|
|