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_UI_COCOA_TABS_TAB_STRIP_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_CONTROLLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
10 | 10 |
11 #include "base/scoped_nsobject.h" | 11 #include "base/scoped_nsobject.h" |
12 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
13 #import "chrome/browser/ui/cocoa/tab_contents_controller.h" | 13 #import "chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h" |
14 #import "chrome/browser/ui/cocoa/tabs/tab_controller_target.h" | 14 #import "chrome/browser/ui/cocoa/tabs/tab_controller_target.h" |
15 #import "chrome/browser/ui/cocoa/url_drop_target.h" | 15 #import "chrome/browser/ui/cocoa/url_drop_target.h" |
16 #import "third_party/GTM/AppKit/GTMWindowSheetController.h" | 16 #import "third_party/GTM/AppKit/GTMWindowSheetController.h" |
17 | 17 |
18 @class NewTabButton; | 18 @class NewTabButton; |
19 @class TabContentsController; | 19 @class TabContentsController; |
20 @class TabView; | 20 @class TabView; |
21 @class TabStripView; | 21 @class TabStripView; |
22 | 22 |
23 class Browser; | 23 class Browser; |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 - (void)attachConstrainedWindow:(ConstrainedWindowMac*)window; | 253 - (void)attachConstrainedWindow:(ConstrainedWindowMac*)window; |
254 - (void)removeConstrainedWindow:(ConstrainedWindowMac*)window; | 254 - (void)removeConstrainedWindow:(ConstrainedWindowMac*)window; |
255 | 255 |
256 @end | 256 @end |
257 | 257 |
258 // Notification sent when the number of tabs changes. The object will be this | 258 // Notification sent when the number of tabs changes. The object will be this |
259 // controller. | 259 // controller. |
260 extern NSString* const kTabStripNumberOfTabsChanged; | 260 extern NSString* const kTabStripNumberOfTabsChanged; |
261 | 261 |
262 #endif // CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_CONTROLLER_H_ | 262 #endif // CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_CONTROLLER_H_ |
OLD | NEW |