Index: chrome/browser/cocoa/clear_browsing_data_controller.h |
=================================================================== |
--- chrome/browser/cocoa/clear_browsing_data_controller.h (revision 61509) |
+++ chrome/browser/cocoa/clear_browsing_data_controller.h (working copy) |
@@ -34,7 +34,12 @@ |
BrowsingDataRemover* remover_; |
scoped_ptr<ClearBrowsingObserver> observer_; |
BOOL isClearing_; // YES while clearing data is ongoing. |
+ NSString* clearingStatus_; |
+ IBOutlet NSTabView* tabView_; |
+ IBOutlet NSView* otherDataTab_; |
+ IBOutlet NSArray* objectsToVerticallySize_; |
+ |
// Values for checkboxes, kept in sync with bindings. These values get |
// persisted into prefs if the user accepts the dialog. |
BOOL clearBrowsingHistory_; |
@@ -60,7 +65,10 @@ |
// IBActions for the dialog buttons |
- (IBAction)clearData:(id)sender; |
- (IBAction)cancel:(id)sender; |
+ |
- (IBAction)openFlashPlayerSettings:(id)sender; |
+- (IBAction)stopSyncAndDeleteData:(id)sender; |
+- (IBAction)openGoogleDashboard:(id)sender; |
// Properties for bindings |
@property (nonatomic) BOOL clearBrowsingHistory; |
@@ -71,7 +79,11 @@ |
@property (nonatomic) BOOL clearFormData; |
@property (nonatomic) NSInteger timePeriod; |
@property (nonatomic) BOOL isClearing; |
+@property (nonatomic, copy) NSString* clearingStatus; |
+@property (readonly, nonatomic) BOOL isSyncEnabled; |
+@property (readonly) NSFont* labelFont; |
+ |
@end |