OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_COCOA_SIDE_TABS_TOOLBAR_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_COCOA_SIDE_TABS_TOOLBAR_CONTROLLER_H_ |
| 7 |
| 8 #import <Cocoa/Cocoa.h> |
| 9 |
| 10 #import "chrome/browser/cocoa/toolbar_controller.h" |
| 11 |
| 12 // A toolbar controller for when there are side tabs. |
| 13 // TODO(pinkerton): needs to be fleshed out much more and refactored. |
| 14 |
| 15 @interface SideTabsToolbarController : ToolbarController { |
| 16 @private |
| 17 IBOutlet NSButton* starButton_; |
| 18 IBOutlet NSTextField* title_; |
| 19 IBOutlet NSProgressIndicator* loadingSpinner_; |
| 20 } |
| 21 |
| 22 @end |
| 23 |
| 24 #endif // CHROME_BROWSER_COCOA_SIDE_TABS_TOOLBAR_CONTROLLER_H_ |
OLD | NEW |