Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Side by Side Diff: chrome/browser/cocoa/tab_strip_model_observer_bridge.h

Issue 449056: Mac: change tab change notifications to pass full TabChangeType. (Closed)
Patch Set: Rebased ToT. Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/tab_strip_controller.mm ('k') | chrome/browser/cocoa/tab_strip_model_observer_bridge.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698