| Index: chrome/browser/cocoa/extensions/browser_actions_container_view.h
|
| ===================================================================
|
| --- chrome/browser/cocoa/extensions/browser_actions_container_view.h (revision 39220)
|
| +++ chrome/browser/cocoa/extensions/browser_actions_container_view.h (working copy)
|
| @@ -4,11 +4,16 @@
|
|
|
| #import <Cocoa/Cocoa.h>
|
|
|
| +@class BrowserActionButton;
|
| +
|
| @interface BrowserActionsContainerView : NSView {
|
| // Whether there is a border to the right of the last Browser Action.
|
| BOOL rightBorderShown_;
|
| }
|
|
|
| +// Returns the (visible) button at the given index in the view's hierarchy.
|
| +- (BrowserActionButton*)buttonAtIndex:(NSUInteger)index;
|
| +
|
| @property(nonatomic) BOOL rightBorderShown;
|
|
|
| @end
|
|
|