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; |