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

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

Issue 6362007: [Mac] Organize all tab/tab strip files into chrome/browser/ui/cocoa/tabs/.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months 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 | Annotate | Revision Log
OLDNEW
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_UI_COCOA_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_
6 #define CHROME_BROWSER_UI_COCOA_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_ 6 #define CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_
7 #pragma once 7 #pragma once
8 8
9 #import <Foundation/Foundation.h> 9 #import <Foundation/Foundation.h>
10 10
11 #include "chrome/browser/tabs/tab_strip_model_observer.h" 11 #include "chrome/browser/tabs/tab_strip_model_observer.h"
12 12
13 class TabContentsWrapper; 13 class TabContentsWrapper;
14 class TabStripModel; 14 class TabStripModel;
15 15
16 // A C++ bridge class to handle receiving notifications from the C++ tab strip 16 // A C++ bridge class to handle receiving notifications from the C++ tab strip
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 changeType:(TabStripModelObserver::TabChangeType)change; 76 changeType:(TabStripModelObserver::TabChangeType)change;
77 - (void)tabReplacedWithContents:(TabContentsWrapper*)newContents 77 - (void)tabReplacedWithContents:(TabContentsWrapper*)newContents
78 previousContents:(TabContentsWrapper*)oldContents 78 previousContents:(TabContentsWrapper*)oldContents
79 atIndex:(NSInteger)index; 79 atIndex:(NSInteger)index;
80 - (void)tabMiniStateChangedWithContents:(TabContentsWrapper*)contents 80 - (void)tabMiniStateChangedWithContents:(TabContentsWrapper*)contents
81 atIndex:(NSInteger)index; 81 atIndex:(NSInteger)index;
82 - (void)tabStripEmpty; 82 - (void)tabStripEmpty;
83 - (void)tabStripModelDeleted; 83 - (void)tabStripModelDeleted;
84 @end 84 @end
85 85
86 #endif // CHROME_BROWSER_UI_COCOA_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_ 86 #endif // CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_MODEL_OBSERVER_BRIDGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698