diff options
author | spqchan <spqchan@chromium.org> | 2016-02-04 16:59:18 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-05 01:00:37 +0000 |
commit | cae22576c51838b5c32a2d489e8c6187dc3c451f (patch) | |
tree | 5c3b91c77d54cb50a4c9bfe8686799e0de7f1673 /chrome/common | |
parent | 03b7a204fceb8948d84e36e66b26b9a447a2f51f (diff) | |
download | chromium_src-cae22576c51838b5c32a2d489e8c6187dc3c451f.zip chromium_src-cae22576c51838b5c32a2d489e8c6187dc3c451f.tar.gz chromium_src-cae22576c51838b5c32a2d489e8c6187dc3c451f.tar.bz2 |
Preference for Presentation Mode/Fullscreen Toolbar
Fixes the issue with the test on 10.10 for the commit: https://chromium.googlesource.com/chromium/src/+/048c293643242dc0357c8bc8651d1c251559a400
BUG=544307
Review URL: https://codereview.chromium.org/1650713003
Cr-Commit-Position: refs/heads/master@{#373695}
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/pref_names.cc | 4 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index c3d5002..e628ecf 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -384,6 +384,10 @@ const char kContextualSearchEnabled[] = "search.contextual_search_enabled"; // Boolean that indicates whether the browser should put up a confirmation // window when the user is attempting to quit. Mac only. const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit"; + +// Boolean that indicates whether the browser should hide the toolbar when it's +// in fullscreen. Mac only. +const char kHideFullscreenToolbar[] = "browser.hide_fullscreen_toolbar"; #endif // Boolean which specifies whether we should ask the user if we should download diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index e41a657..4933bed 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -155,6 +155,7 @@ extern const char kContextualSearchEnabled[]; #endif #if defined(OS_MACOSX) extern const char kConfirmToQuitEnabled[]; +extern const char kHideFullscreenToolbar[]; #endif extern const char kPromptForDownload[]; extern const char kAlternateErrorPagesEnabled[]; |