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_COCOA_TABPOSE_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_COCOA_TABPOSE_WINDOW_H_ |
6 #define CHROME_BROWSER_COCOA_TABPOSE_WINDOW_H_ | 6 #define CHROME_BROWSER_COCOA_TABPOSE_WINDOW_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_cftyperef.h" | 11 #include "base/scoped_cftyperef.h" |
12 | 12 |
13 #include "base/ref_counted.h" | |
14 #include "base/scoped_nsobject.h" | 13 #include "base/scoped_nsobject.h" |
15 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
16 #include "base/scoped_vector.h" | 15 #include "base/scoped_vector.h" |
17 | 16 |
18 namespace tabpose { | 17 namespace tabpose { |
19 | 18 |
20 class Tile; | 19 class Tile; |
21 class TileSet; | 20 class TileSet; |
22 | 21 |
23 } | 22 } |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 // If |slomo| is YES, then the appearance animation is shown in slow motion. | 71 // If |slomo| is YES, then the appearance animation is shown in slow motion. |
73 // The window blocks all keyboard and mouse events and releases itself when | 72 // The window blocks all keyboard and mouse events and releases itself when |
74 // closed. | 73 // closed. |
75 + (id)openTabposeFor:(NSWindow*)parent | 74 + (id)openTabposeFor:(NSWindow*)parent |
76 rect:(NSRect)rect | 75 rect:(NSRect)rect |
77 slomo:(BOOL)slomo | 76 slomo:(BOOL)slomo |
78 tabStripModel:(TabStripModel*)tabStripModel; | 77 tabStripModel:(TabStripModel*)tabStripModel; |
79 @end | 78 @end |
80 | 79 |
81 #endif // CHROME_BROWSER_COCOA_TABPOSE_WINDOW_H_ | 80 #endif // CHROME_BROWSER_COCOA_TABPOSE_WINDOW_H_ |
OLD | NEW |