| 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_COTNENTS_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_ | 
| 6 #define CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_ | 6 #define CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_ | 
| 7 | 7 | 
| 8 #include <Cocoa/Cocoa.h> | 8 #include <Cocoa/Cocoa.h> | 
| 9 | 9 | 
| 10 class CommandUpdater; | 10 class CommandUpdater; | 
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 61 // notification from the model isn't specific). | 61 // notification from the model isn't specific). | 
| 62 - (void)tabDidChange; | 62 - (void)tabDidChange; | 
| 63 | 63 | 
| 64 // Called when any url bar state changes. If |tabForRestoring| is non-NULL, | 64 // Called when any url bar state changes. If |tabForRestoring| is non-NULL, | 
| 65 // it points to a TabContents whose state we should restore. | 65 // it points to a TabContents whose state we should restore. | 
| 66 - (void)updateToolbarWithContents:(TabContents*)tabForRestoring; | 66 - (void)updateToolbarWithContents:(TabContents*)tabForRestoring; | 
| 67 | 67 | 
| 68 // Sets whether or not the current page in the frontmost tab is bookmarked. | 68 // Sets whether or not the current page in the frontmost tab is bookmarked. | 
| 69 - (void)setStarredState:(BOOL)isStarred; | 69 - (void)setStarredState:(BOOL)isStarred; | 
| 70 | 70 | 
|  | 71 // Return the rect, in WebKit coordinates (flipped), of the window's grow box | 
|  | 72 // in the coordinate system of the content area of this tab. | 
|  | 73 // |windowGrowBox| needs to be in the window's coordinate system. | 
|  | 74 - (NSRect)growBoxFromWindowGrowBox:(NSRect)windowGrowBox; | 
|  | 75 | 
| 71 @end | 76 @end | 
| 72 | 77 | 
| 73 #endif  // CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_ | 78 #endif  // CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_ | 
| OLD | NEW | 
|---|