| 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 #ifndef CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ | 6 #define CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
| 10 | 10 |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 - (void)destroySheetController; | 216 - (void)destroySheetController; |
| 217 | 217 |
| 218 // Returns the currently active TabContentsController. | 218 // Returns the currently active TabContentsController. |
| 219 - (TabContentsController*)activeTabContentsController; | 219 - (TabContentsController*)activeTabContentsController; |
| 220 | 220 |
| 221 // See comments in browser_window_controller.h for documentation about these | 221 // See comments in browser_window_controller.h for documentation about these |
| 222 // functions. | 222 // functions. |
| 223 - (void)attachConstrainedWindow:(ConstrainedWindowMac*)window; | 223 - (void)attachConstrainedWindow:(ConstrainedWindowMac*)window; |
| 224 - (void)removeConstrainedWindow:(ConstrainedWindowMac*)window; | 224 - (void)removeConstrainedWindow:(ConstrainedWindowMac*)window; |
| 225 - (void)updateDevToolsForContents:(TabContents*)contents; | 225 - (void)updateDevToolsForContents:(TabContents*)contents; |
| 226 - (void)updateSidebarForContents:(TabContents*)contents; |
| 226 | 227 |
| 227 @end | 228 @end |
| 228 | 229 |
| 229 // Notification sent when the number of tabs changes. The object will be this | 230 // Notification sent when the number of tabs changes. The object will be this |
| 230 // controller. | 231 // controller. |
| 231 extern NSString* const kTabStripNumberOfTabsChanged; | 232 extern NSString* const kTabStripNumberOfTabsChanged; |
| 232 | 233 |
| 233 #endif // CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ | 234 #endif // CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ |
| OLD | NEW |