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

Unified Diff: chrome/browser/autofill/autofill_credit_card_model_mac.h

Issue 6258017: Mac: Never have a space between @property and ( (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome
Patch Set: comments Created 9 years, 11 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/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 093e7cb2a97bc905a5305e419052fbba05c1bdf9..53562a2dee8e5228ee25307897c0c234bdaf2618 100644
--- a/chrome/browser/autofill/autofill_credit_card_model_mac.h
+++ b/chrome/browser/autofill/autofill_credit_card_model_mac.h
@@ -27,10 +27,10 @@ class CreditCard;
NSString* expirationYear_;
}
-@property (nonatomic, copy) NSString* nameOnCard;
-@property (nonatomic, copy) NSString* creditCardNumber;
-@property (nonatomic, copy) NSString* expirationMonth;
-@property (nonatomic, copy) NSString* expirationYear;
+@property(nonatomic, copy) NSString* nameOnCard;
+@property(nonatomic, copy) NSString* creditCardNumber;
+@property(nonatomic, copy) NSString* expirationMonth;
+@property(nonatomic, copy) NSString* expirationYear;
// Designated initializer. Initializes the property strings to values retrieved
// from the |creditCard| object.

Powered by Google App Engine
This is Rietveld 408576698