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

Side by Side Diff: chrome/browser/autofill/autofill_address_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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/autofill/autofill_address_sheet_controller_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_ADDRESS_MODEL_MAC_ 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_ADDRESS_MODEL_MAC_
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_ADDRESS_MODEL_MAC_ 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_ADDRESS_MODEL_MAC_
7 #pragma once 7 #pragma once
8 8
9 #import <Cocoa/Cocoa.h> 9 #import <Cocoa/Cocoa.h>
10 10
(...skipping 16 matching lines...) Expand all
27 NSString* addressLine1_; 27 NSString* addressLine1_;
28 NSString* addressLine2_; 28 NSString* addressLine2_;
29 NSString* addressCity_; 29 NSString* addressCity_;
30 NSString* addressState_; 30 NSString* addressState_;
31 NSString* addressZip_; 31 NSString* addressZip_;
32 NSString* addressCountry_; 32 NSString* addressCountry_;
33 NSString* phoneWholeNumber_; 33 NSString* phoneWholeNumber_;
34 NSString* faxWholeNumber_; 34 NSString* faxWholeNumber_;
35 } 35 }
36 36
37 @property (nonatomic, copy) NSString* fullName; 37 @property(nonatomic, copy) NSString* fullName;
38 @property (nonatomic, copy) NSString* email; 38 @property(nonatomic, copy) NSString* email;
39 @property (nonatomic, copy) NSString* companyName; 39 @property(nonatomic, copy) NSString* companyName;
40 @property (nonatomic, copy) NSString* addressLine1; 40 @property(nonatomic, copy) NSString* addressLine1;
41 @property (nonatomic, copy) NSString* addressLine2; 41 @property(nonatomic, copy) NSString* addressLine2;
42 @property (nonatomic, copy) NSString* addressCity; 42 @property(nonatomic, copy) NSString* addressCity;
43 @property (nonatomic, copy) NSString* addressState; 43 @property(nonatomic, copy) NSString* addressState;
44 @property (nonatomic, copy) NSString* addressZip; 44 @property(nonatomic, copy) NSString* addressZip;
45 @property (nonatomic, copy) NSString* addressCountry; 45 @property(nonatomic, copy) NSString* addressCountry;
46 @property (nonatomic, copy) NSString* phoneWholeNumber; 46 @property(nonatomic, copy) NSString* phoneWholeNumber;
47 @property (nonatomic, copy) NSString* faxWholeNumber; 47 @property(nonatomic, copy) NSString* faxWholeNumber;
48 48
49 // The designated initializer. Initializes the property strings to values 49 // The designated initializer. Initializes the property strings to values
50 // retrieved from the |profile|. 50 // retrieved from the |profile|.
51 - (id)initWithProfile:(const AutoFillProfile&)profile; 51 - (id)initWithProfile:(const AutoFillProfile&)profile;
52 52
53 // This method copies internal NSString property values into the 53 // This method copies internal NSString property values into the
54 // |profile| object's fields as appropriate. |profile| should never be NULL. 54 // |profile| object's fields as appropriate. |profile| should never be NULL.
55 - (void)copyModelToProfile:(AutoFillProfile*)profile; 55 - (void)copyModelToProfile:(AutoFillProfile*)profile;
56 56
57 @end 57 @end
58 58
59 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_ADDRESS_MODEL_MAC_ 59 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_ADDRESS_MODEL_MAC_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/autofill/autofill_address_sheet_controller_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698