OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include <Cocoa/Cocoa.h> |
| 6 |
| 7 // A FullscreenWindow is a borderless window suitable for going |
| 8 // fullscreen. The returned window is NOT release when closed and is |
| 9 // not initially visible. |
| 10 @interface FullscreenWindow : NSWindow |
| 11 |
| 12 // Initialize a FullscreenWindow for the given screen. |
| 13 // Designated initializer. |
| 14 - (id)initForScreen:(NSScreen*)screen; |
| 15 |
| 16 @end |
| 17 |
| 18 |
| 19 |
OLD | NEW |