Add support for simple (pre-Lion) fullscreen on Mac OS

This commit is contained in:
Zachary Flower 2017-08-13 00:28:33 -06:00
parent c6289ef219
commit ba5fa2c8b1
9 changed files with 133 additions and 1 deletions

View file

@ -36,6 +36,8 @@ const char kSkipTaskbar[] = "skipTaskbar";
// http://www.opera.com/support/mastering/kiosk/
const char kKiosk[] = "kiosk";
const char kSimpleFullScreen[] = "simpleFullscreen";
// Make windows stays on the top of all other windows.
const char kAlwaysOnTop[] = "alwaysOnTop";

View file

@ -31,6 +31,7 @@ extern const char kClosable[];
extern const char kFullscreen[];
extern const char kSkipTaskbar[];
extern const char kKiosk[];
extern const char kSimpleFullScreen[];
extern const char kAlwaysOnTop[];
extern const char kAcceptFirstMouse[];
extern const char kUseContentSize[];