| Index: chrome/android/java/src/org/chromium/chrome/browser/payments/ContactEditor.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/ContactEditor.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/ContactEditor.java
|
| index 7950bf6f8e0731894d1ea8efaf05db547b650a21..9a09c2803399ae3c9699bf9229aa68ec97cfca32 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/payments/ContactEditor.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/ContactEditor.java
|
| @@ -63,6 +63,27 @@ public class ContactEditor extends EditorBase<AutofillContact> {
|
| }
|
|
|
| /**
|
| + * @return Whether this editor requires the payer name.
|
| + */
|
| + public boolean getRequestPayerName() {
|
| + return mRequestPayerName;
|
| + }
|
| +
|
| + /**
|
| + * @return Whether this editor requires the payer phone.
|
| + */
|
| + public boolean getRequestPayerPhone() {
|
| + return mRequestPayerPhone;
|
| + }
|
| +
|
| + /**
|
| + * @return Whether this editor requires the payer email.
|
| + */
|
| + public boolean getRequestPayerEmail() {
|
| + return mRequestPayerEmail;
|
| + }
|
| +
|
| + /**
|
| * Returns the contact completion status with the given name, phone and email.
|
| *
|
| * @param name The payer name to check.
|
|
|