| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
| 6 | 6 |
| 7 @class BrowserActionButton; |
| 8 |
| 7 @interface BrowserActionsContainerView : NSView { | 9 @interface BrowserActionsContainerView : NSView { |
| 8 // Whether there is a border to the right of the last Browser Action. | 10 // Whether there is a border to the right of the last Browser Action. |
| 9 BOOL rightBorderShown_; | 11 BOOL rightBorderShown_; |
| 10 } | 12 } |
| 11 | 13 |
| 14 // Returns the (visible) button at the given index in the view's hierarchy. |
| 15 - (BrowserActionButton*)buttonAtIndex:(NSUInteger)index; |
| 16 |
| 12 @property(nonatomic) BOOL rightBorderShown; | 17 @property(nonatomic) BOOL rightBorderShown; |
| 13 | 18 |
| 14 @end | 19 @end |
| OLD | NEW |