diff options
Diffstat (limited to 'chrome/browser/app_controller_mac.h')
-rw-r--r-- | chrome/browser/app_controller_mac.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/app_controller_mac.h b/chrome/browser/app_controller_mac.h index 09fa014..db562a3 100644 --- a/chrome/browser/app_controller_mac.h +++ b/chrome/browser/app_controller_mac.h @@ -7,11 +7,14 @@ #import <Cocoa/Cocoa.h> +class CommandUpdater; + // The application controller object, created by loading the MainMenu nib. // This handles things like responding to menus when there are no windows // open, etc and acts as the NSApplication delegate. -@interface AppController : NSObject { +@interface AppController : NSObject<NSUserInterfaceValidations> { @public + CommandUpdater* menuState_; // strong ref } - (IBAction)quit:(id)sender; |