summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/extensions/browser_actions_controller.h
diff options
context:
space:
mode:
authorandybons@chromium.org <andybons@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-31 23:28:41 +0000
committerandybons@chromium.org <andybons@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-31 23:28:41 +0000
commit98940fdf0611aa314b1a1f5511676a3726c7297d (patch)
tree308cab7fcac55a6aa2ef6bc7d3957d5d7da39e8d /chrome/browser/cocoa/extensions/browser_actions_controller.h
parente67ced4317b42834974c31672bdc1b154f569b28 (diff)
downloadchromium_src-98940fdf0611aa314b1a1f5511676a3726c7297d.zip
chromium_src-98940fdf0611aa314b1a1f5511676a3726c7297d.tar.gz
chromium_src-98940fdf0611aa314b1a1f5511676a3726c7297d.tar.bz2
[Mac] Prep for animating the Browser Action Buttons in and out.
Also fixes bug where the go button would overlap with the page/wrench menus upon uninstalling the last extension. BUG=40003,39200 TEST=none Review URL: http://codereview.chromium.org/1551009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43282 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/extensions/browser_actions_controller.h')
-rw-r--r--chrome/browser/cocoa/extensions/browser_actions_controller.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/cocoa/extensions/browser_actions_controller.h b/chrome/browser/cocoa/extensions/browser_actions_controller.h
index f35fc0f..a27a3fa 100644
--- a/chrome/browser/cocoa/extensions/browser_actions_controller.h
+++ b/chrome/browser/cocoa/extensions/browser_actions_controller.h
@@ -31,6 +31,10 @@ extern const NSString* kBrowserActionVisibilityChangedNotification;
// container within the Toolbar.
@interface BrowserActionsController : NSObject {
@private
+ // Whether the container has already done initial setup and layout of the
+ // buttons.
+ BOOL isInitialized_;
+
// Reference to the current browser. Weak.
Browser* browser_;