| Index: chrome/browser/autofill/autofill_credit_card_model_mac.h
|
| diff --git a/chrome/browser/autofill/autofill_credit_card_model_mac.h b/chrome/browser/autofill/autofill_credit_card_model_mac.h
|
| index 97dfb67fbbc7911d56599ed575c344b2fb454603..202202e914befa56c66495831f51aec932e5f0cc 100644
|
| --- a/chrome/browser/autofill/autofill_credit_card_model_mac.h
|
| +++ b/chrome/browser/autofill/autofill_credit_card_model_mac.h
|
| @@ -12,7 +12,6 @@ class CreditCard;
|
| // A "model" class used with bindings mechanism and the
|
| // |AutoFillCreditCardViewController| to achieve the form-like view
|
| // of autofill data in the Chrome options UI.
|
| -// Note that |summary| is a derived property.
|
| // Model objects are initialized from the given |creditCard| using the
|
| // designated initializer |initWithCreditCard:|.
|
| // Users of this class must be prepared to handle nil string return values.
|
| @@ -31,10 +30,6 @@ class CreditCard;
|
| NSString* shippingAddress_;
|
| }
|
|
|
| -// |summary| is a derived property based on |creditCardNumber|,
|
| -// |expirationMonth| and |expirationYear|. KVO observers receive change
|
| -// notifications for |summary| when any of these properties change.
|
| -@property (readonly) NSString* summary;
|
| @property (nonatomic, copy) NSString* label;
|
| @property (nonatomic, copy) NSString* nameOnCard;
|
| @property (nonatomic, copy) NSString* creditCardNumber;
|
| @@ -42,7 +37,6 @@ class CreditCard;
|
| @property (nonatomic, copy) NSString* expirationYear;
|
| @property (nonatomic, copy) NSString* cvcCode;
|
| @property (nonatomic, copy) NSString* billingAddress;
|
| -@property (nonatomic, copy) NSString* shippingAddress;
|
|
|
| // Designated initializer. Initializes the property strings to values retrieved
|
| // from the |creditCard| object.
|
|
|