Index: chrome/browser/ui/cocoa/extensions/browser_actions_container_view.h |
diff --git a/chrome/browser/ui/cocoa/extensions/browser_actions_container_view.h b/chrome/browser/ui/cocoa/extensions/browser_actions_container_view.h |
index c92eff277bd7e5ef1706b513dc06146aa487cdb0..5ffc9fab6804ee77816d1416b70217bac480b003 100644 |
--- a/chrome/browser/ui/cocoa/extensions/browser_actions_container_view.h |
+++ b/chrome/browser/ui/cocoa/extensions/browser_actions_container_view.h |
@@ -118,12 +118,18 @@ class BrowserActionsContainerViewSizeDelegate { |
// Sets whether or not tracking (for mouseEntered events) is enabled. |
- (void)setTrackingEnabled:(BOOL)enabled; |
+// Returns true if tracking is currently enabled. |
+- (BOOL)trackingEnabled; |
+ |
// Sets whether or not the container is the overflow container. |
- (void)setIsOverflow:(BOOL)isOverflow; |
// Sets whether or not the container is highlighting. |
- (void)setHighlight:(scoped_ptr<ui::NinePartImageIds>)highlight; |
+// Reeturns true if the container is currently highlighting. |
+- (BOOL)isHighlighting; |
+ |
// Resizes the container to the given ideal width, optionally animating. |
- (void)resizeToWidth:(CGFloat)width animate:(BOOL)animate; |