diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-23 21:34:36 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-23 21:34:36 +0000 |
commit | f1b89ad6ccf85e93ef3c0886e04e6990f4bcab29 (patch) | |
tree | de6c5b747d106dc6e960736a29d09a78f5a6d305 /chrome/views | |
parent | 541f7792a2526af07cc2593ef5961fb58a472b0c (diff) | |
download | chromium_src-f1b89ad6ccf85e93ef3c0886e04e6990f4bcab29.zip chromium_src-f1b89ad6ccf85e93ef3c0886e04e6990f4bcab29.tar.gz chromium_src-f1b89ad6ccf85e93ef3c0886e04e6990f4bcab29.tar.bz2 |
Fullscreen mode UI.
This requires a change that is currently out for review from sky.
BUG=534
TEST=App menu should have a "full screen mode" entry; going into fullscreen mode should display a bubble at the top of the screen, which should slide away after a few seconds; mousing to the screen top will show the bubble again, and clicking the link inside should exit fullscreen mode.
Review URL: http://codereview.chromium.org/28012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10214 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views')
-rw-r--r-- | chrome/views/accelerator.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/views/accelerator.cc b/chrome/views/accelerator.cc index 8619394..e2a5f18 100644 --- a/chrome/views/accelerator.cc +++ b/chrome/views/accelerator.cc @@ -44,6 +44,9 @@ std::wstring Accelerator::GetShortcutText() const { case VK_F1: string_id = IDS_F1_KEY; break; + case VK_F11: + string_id = IDS_F11_KEY; + break; } std::wstring shortcut; |