Bug 704709 - Don't show full-screen warning on media key press on Windows. r=smaug,jmathies

This commit is contained in:
Chris Pearce 2011-12-01 11:27:14 +13:00
Родитель 12c396afdf
Коммит e6f9f41988
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -60,6 +60,10 @@
#include "mozilla/dom/TabChild.h"
#include "mozilla/Util.h"
#ifdef XP_WIN
#include "winuser.h"
#endif
#include "nsPresShell.h"
#include "nsPresContext.h"
#include "nsIContent.h"
@ -6260,6 +6264,11 @@ IsFullScreenAndRestrictedKeyEvent(nsIContent* aTarget, const nsEvent* aEvent)
case NS_VK_CONTROL:
case NS_VK_ALT:
case NS_VK_META:
#ifdef XP_WIN
case VK_VOLUME_MUTE:
case VK_VOLUME_DOWN:
case VK_VOLUME_UP:
#endif
// Unrestricted key code.
return false;
default: