| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef CHROME_BROWSER_COCOA_TAB_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_COCOA_TAB_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_COCOA_TAB_CONTROLLER_H_ | 6 #define CHROME_BROWSER_COCOA_TAB_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 @class TabView; | 10 @class TabView; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // perform the close. | 55 // perform the close. |
| 56 - (IBAction)closeTab:(id)sender; | 56 - (IBAction)closeTab:(id)sender; |
| 57 | 57 |
| 58 // Replace the current icon view with the given view. |iconView| will be | 58 // Replace the current icon view with the given view. |iconView| will be |
| 59 // resized to the size of the current icon view. | 59 // resized to the size of the current icon view. |
| 60 - (void)setIconView:(NSView*)iconView; | 60 - (void)setIconView:(NSView*)iconView; |
| 61 - (NSView*)iconView; | 61 - (NSView*)iconView; |
| 62 | 62 |
| 63 @end | 63 @end |
| 64 | 64 |
| 65 @interface TabController(TestingAPI) |
| 66 - (NSString *)toolTip; |
| 67 @end // TabController(TestingAPI) |
| 68 |
| 65 #endif // CHROME_BROWSER_COCOA_TAB_CONTROLLER_H_ | 69 #endif // CHROME_BROWSER_COCOA_TAB_CONTROLLER_H_ |
| OLD | NEW |