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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogGlue.java

Issue 14129005: Remove "Use billing for shipping" checkbox in favor of item in suggestions menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge Created 7 years, 8 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: 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

Powered by Google App Engine
This is Rietveld 408576698