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

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

Issue 3199019: Mac: Support compositor in fullscreen windows. (Closed)
Patch Set: Created 10 years, 3 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
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 #include <Cocoa/Cocoa.h> 5 #include <Cocoa/Cocoa.h>
6 #import "chrome/browser/cocoa/chrome_event_processing_window.h" 6 #import "chrome/browser/cocoa/chrome_event_processing_window.h"
7 7
8 // A FullscreenWindow is a borderless window suitable for going 8 // A FullscreenWindow is a borderless window suitable for going
9 // fullscreen. The returned window is NOT release when closed and is 9 // fullscreen. The returned window is NOT release when closed and is
10 // not initially visible. 10 // not initially visible.
11 // FullscreenWindow derives from ChromeEventProcessingWindow to inherit 11 // FullscreenWindow derives from ChromeEventProcessingWindow to inherit
12 // special event handling (e.g. handleExtraKeyboardShortcut). 12 // special event handling (e.g. handleExtraKeyboardShortcut).
13 @interface FullscreenWindow : ChromeEventProcessingWindow 13 @interface FullscreenWindow : ChromeEventProcessingWindow {
14 int underlaySurfaceCount_;
15 }
14 16
15 // Initialize a FullscreenWindow for the given screen. 17 // Initialize a FullscreenWindow for the given screen.
16 // Designated initializer. 18 // Designated initializer.
17 - (id)initForScreen:(NSScreen*)screen; 19 - (id)initForScreen:(NSScreen*)screen;
18 20
19 @end 21 @end
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/cocoa/fullscreen_window.mm » ('j') | chrome/browser/cocoa/fullscreen_window.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698