summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authormmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-14 22:58:56 +0000
committermmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-14 22:58:56 +0000
commiteac41852dc7799e4cd25ae011333978a7ef884a0 (patch)
tree53fe9c815cce19e648c7f6c0ade3833f6d5e18d2 /chrome
parent654ade5dd32bcd4be4dc1522423e681e1cdcc80e (diff)
downloadchromium_src-eac41852dc7799e4cd25ae011333978a7ef884a0.zip
chromium_src-eac41852dc7799e4cd25ae011333978a7ef884a0.tar.gz
chromium_src-eac41852dc7799e4cd25ae011333978a7ef884a0.tar.bz2
Don't hide task manager key binding from web pages.
This allows shift-esc to work again in Gmail chat windows. BUG=none TEST=Open Gmail, start a chat, repeatedly press SHIFT+ESC and watch it switch between the chat "window" and the mail list. The Task Manager should not open. Review URL: http://codereview.chromium.org/274028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/browser.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/browser.cc b/chrome/browser/browser.cc
index 444680b..2bfd17a 100644
--- a/chrome/browser/browser.cc
+++ b/chrome/browser/browser.cc
@@ -2136,8 +2136,7 @@ bool Browser::IsReservedAccelerator(const NativeWebKeyboardEvent& event) {
command_id == IDC_NEW_WINDOW ||
command_id == IDC_RESTORE_TAB ||
command_id == IDC_SELECT_NEXT_TAB ||
- command_id == IDC_SELECT_PREVIOUS_TAB ||
- command_id == IDC_TASK_MANAGER;
+ command_id == IDC_SELECT_PREVIOUS_TAB;
}
void Browser::ShowRepostFormWarningDialog(TabContents *tab_contents) {