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

Unified Diff: chrome/browser/ui/cocoa/clear_browsing_data_controller.h

Issue 6258017: Mac: Never have a space between @property and ( (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome
Patch Set: 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/ui/cocoa/clear_browsing_data_controller.h
diff --git a/chrome/browser/ui/cocoa/clear_browsing_data_controller.h b/chrome/browser/ui/cocoa/clear_browsing_data_controller.h
index 776841d76ccdab9155022c22bbdd476e024e4bde..98201c9d1ac6f155fa3158d207751a4fe8a7c4a7 100644
--- a/chrome/browser/ui/cocoa/clear_browsing_data_controller.h
+++ b/chrome/browser/ui/cocoa/clear_browsing_data_controller.h
@@ -63,14 +63,14 @@ extern NSString* const kClearBrowsingDataControllerRemoveMask;
- (IBAction)openFlashPlayerSettings:(id)sender;
// Properties for bindings
-@property (nonatomic) BOOL clearBrowsingHistory;
-@property (nonatomic) BOOL clearDownloadHistory;
-@property (nonatomic) BOOL emptyCache;
-@property (nonatomic) BOOL deleteCookies;
-@property (nonatomic) BOOL clearSavedPasswords;
-@property (nonatomic) BOOL clearFormData;
-@property (nonatomic) NSInteger timePeriod;
-@property (nonatomic) BOOL isClearing;
+@property(nonatomic) BOOL clearBrowsingHistory;
Robert Sesek 2011/01/24 18:03:57 Move this to be after the ivar block.
Nico 2011/01/24 18:13:25 Done.
+@property(nonatomic) BOOL clearDownloadHistory;
+@property(nonatomic) BOOL emptyCache;
+@property(nonatomic) BOOL deleteCookies;
+@property(nonatomic) BOOL clearSavedPasswords;
+@property(nonatomic) BOOL clearFormData;
+@property(nonatomic) NSInteger timePeriod;
+@property(nonatomic) BOOL isClearing;
@end
@@ -78,7 +78,7 @@ extern NSString* const kClearBrowsingDataControllerRemoveMask;
@interface ClearBrowsingDataController (ExposedForUnitTests)
// Create the controller with the given profile (which must not be NULL).
- (id)initWithProfile:(Profile*)profile;
-@property (readonly) int removeMask;
+@property(readonly) int removeMask;
Robert Sesek 2011/01/24 18:03:57 Should be the first line of the @interface.
Nico 2011/01/24 18:13:25 Done.
- (void)persistToPrefs;
- (void)closeDialog;
- (void)dataRemoverDidFinish;

Powered by Google App Engine
This is Rietveld 408576698