diff options
author | jrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-05 00:57:34 +0000 |
---|---|---|
committer | jrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-05 00:57:34 +0000 |
commit | 0cbfdaadad196f6699dd67ff291522dc421610e4 (patch) | |
tree | 4c23bde054a6b7a6aef5c47500c7ccbfeefe386f /chrome/browser/app_controller_mac.h | |
parent | c4cacf1429f06bac025d8c0337c3b80efa8f98a9 (diff) | |
download | chromium_src-0cbfdaadad196f6699dd67ff291522dc421610e4.zip chromium_src-0cbfdaadad196f6699dd67ff291522dc421610e4.tar.gz chromium_src-0cbfdaadad196f6699dd67ff291522dc421610e4.tar.bz2 |
Fix compile with 10.6 SDK
Review URL: http://codereview.chromium.org/4521001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65159 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/app_controller_mac.h')
-rw-r--r-- | chrome/browser/app_controller_mac.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/app_controller_mac.h b/chrome/browser/app_controller_mac.h index dc555e0..721aefc 100644 --- a/chrome/browser/app_controller_mac.h +++ b/chrome/browser/app_controller_mac.h @@ -9,6 +9,7 @@ #import <Cocoa/Cocoa.h> #include <vector> +#include "base/cocoa_protocols_mac.h" #include "base/scoped_nsobject.h" #include "base/scoped_ptr.h" @@ -23,7 +24,8 @@ class Profile; // 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<NSUserInterfaceValidations> { +@interface AppController : NSObject<NSUserInterfaceValidations, + NSApplicationDelegate> { @private scoped_ptr<CommandUpdater> menuState_; // Management of the bookmark menu which spans across all windows |