summaryrefslogtreecommitdiffstats
path: root/chrome/browser/app_controller_mac.h
diff options
context:
space:
mode:
authorjrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-20 22:13:07 +0000
committerjrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-20 22:13:07 +0000
commitbde3dda19eb3154ef97dcad61705c0705be86ba0 (patch)
treec551c4d00f6510f1a1253f38fefdc7c8c6292cde /chrome/browser/app_controller_mac.h
parentfc2fed4c16ecd0e341e6497f1863449ced9374c8 (diff)
downloadchromium_src-bde3dda19eb3154ef97dcad61705c0705be86ba0.zip
chromium_src-bde3dda19eb3154ef97dcad61705c0705be86ba0.tar.gz
chromium_src-bde3dda19eb3154ef97dcad61705c0705be86ba0.tar.bz2
About box development.
BUG=http://codereview.chromium.org/112044 Note pieces of chrome.gyp come from a different CL (keystone_glue work associated with this). Review URL: http://codereview.chromium.org/113614 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/app_controller_mac.h')
-rw-r--r--chrome/browser/app_controller_mac.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/app_controller_mac.h b/chrome/browser/app_controller_mac.h
index d916abf..bf2aebc 100644
--- a/chrome/browser/app_controller_mac.h
+++ b/chrome/browser/app_controller_mac.h
@@ -11,6 +11,7 @@
#include "base/scoped_nsobject.h"
#include "base/scoped_ptr.h"
+@class AboutWindowController;
class BookmarkMenuBridge;
class CommandUpdater;
class GURL;
@@ -27,6 +28,7 @@ class Profile;
// (and Browser*s).
scoped_ptr<BookmarkMenuBridge> bookmarkMenuBridge_;
scoped_nsobject<PreferencesWindowController> prefsController_;
+ scoped_nsobject<AboutWindowController> aboutController_;
// URLs that need to be opened when the app is fully initialized. Because it's
// only needed during early startup, it points to a valid vector during early
@@ -41,6 +43,10 @@ class Profile;
// visible.
- (IBAction)showPreferences:(id)sender;
+// Redirect in the menu item from the expected target of "File's
+// Owner" (NSAppliation) for a Branded About Box
+- (IBAction)orderFrontStandardAboutPanel:(id)sender;
+
@end
#endif