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

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

Issue 3590020: [Mac] UI for clearing sync data on the server.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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/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

Powered by Google App Engine
This is Rietveld 408576698