Merge pull request #10254 from zachflower/feature/simple-fullscreen-mode

Feature/simple fullscreen mode
This commit is contained in:
Cheng Zhao 2017-09-14 09:39:50 +09:00 committed by GitHub
commit a19a229a59
10 changed files with 141 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[];