Merge pull request #9788 from shubham2892/Add-option-to-show-title-text-in-titlebar-in-fullscreen

Add alwaysShowTitleTextInFullscreen flag
This commit is contained in:
Kevin Sawicki 2017-07-14 11:58:12 -07:00 committed by GitHub
commit 5581d1d652
5 changed files with 19 additions and 2 deletions

View file

@ -48,6 +48,9 @@ const char kUseContentSize[] = "useContentSize";
// Whether window zoom should be to page width.
const char kZoomToPageWidth[] = "zoomToPageWidth";
// Whether always show title text in full screen is enabled.
const char kFullscreenWindowTitle[] = "fullscreenWindowTitle";
// The requested title bar style for the window
const char kTitleBarStyle[] = "titleBarStyle";

View file

@ -35,6 +35,7 @@ extern const char kAlwaysOnTop[];
extern const char kAcceptFirstMouse[];
extern const char kUseContentSize[];
extern const char kZoomToPageWidth[];
extern const char kFullscreenWindowTitle[];
extern const char kTitleBarStyle[];
extern const char kTabbingIdentifier[];
extern const char kAutoHideMenuBar[];