| 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_STRIP_MODEL_OBSERVER_BRIDGE_H_ | 5 #ifndef CHROME_BROWSER_COCOA_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_ |
| 6 #define CHROME_BROWSER_COCOA_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_ | 6 #define CHROME_BROWSER_COCOA_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 | 9 |
| 10 #include "chrome/browser/tabs/tab_strip_model.h" | 10 #include "chrome/browser/tabs/tab_strip_model.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 - (void)selectTabWithContents:(TabContents*)newContents | 59 - (void)selectTabWithContents:(TabContents*)newContents |
| 60 previousContents:(TabContents*)oldContents | 60 previousContents:(TabContents*)oldContents |
| 61 atIndex:(NSInteger)index | 61 atIndex:(NSInteger)index |
| 62 userGesture:(bool)wasUserGesture; | 62 userGesture:(bool)wasUserGesture; |
| 63 - (void)tabMovedWithContents:(TabContents*)contents | 63 - (void)tabMovedWithContents:(TabContents*)contents |
| 64 fromIndex:(NSInteger)from | 64 fromIndex:(NSInteger)from |
| 65 toIndex:(NSInteger)to | 65 toIndex:(NSInteger)to |
| 66 pinnedStateChanged:(BOOL)pinnedChanged; | 66 pinnedStateChanged:(BOOL)pinnedChanged; |
| 67 - (void)tabChangedWithContents:(TabContents*)contents | 67 - (void)tabChangedWithContents:(TabContents*)contents |
| 68 atIndex:(NSInteger)index | 68 atIndex:(NSInteger)index |
| 69 loadingOnly:(BOOL)loading; | 69 changeType:(TabStripModelObserver::TabChangeType)change; |
| 70 - (void)tabPinnedStateChangedWithContents:(TabContents*)contents | 70 - (void)tabPinnedStateChangedWithContents:(TabContents*)contents |
| 71 atIndex:(NSInteger)index; | 71 atIndex:(NSInteger)index; |
| 72 - (void)tabStripEmpty; | 72 - (void)tabStripEmpty; |
| 73 @end | 73 @end |
| 74 | 74 |
| 75 #endif // CHROME_BROWSER_COCOA_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_ | 75 #endif // CHROME_BROWSER_COCOA_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_ |
| OLD | NEW |