Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2372)

Unified Diff: chrome/browser/global_keyboard_shortcuts_mac.mm

Issue 295003: Make backspace not go back while IME is active. (Closed)
Patch Set: s/skip/skip_in_browser/ Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ime_input.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/global_keyboard_shortcuts_mac.mm
diff --git a/chrome/browser/global_keyboard_shortcuts_mac.mm b/chrome/browser/global_keyboard_shortcuts_mac.mm
index 2ea5d66b146ce59f6e8504965902aeb7b4e59d45..3379b5a95128838c7cca11a159d2848c97812da5 100644
--- a/chrome/browser/global_keyboard_shortcuts_mac.mm
+++ b/chrome/browser/global_keyboard_shortcuts_mac.mm
@@ -40,6 +40,8 @@ const KeyboardShortcutData* GetBrowserKeyboardShortcutTable
static const KeyboardShortcutData keyboard_shortcuts[] = {
{true, false, false, kVK_LeftArrow, IDC_BACK},
{true, false, false, kVK_RightArrow, IDC_FORWARD},
+ {false, false, false, kVK_Delete, IDC_BACK},
+ {false, true, false, kVK_Delete, IDC_FORWARD},
};
*num_entries = arraysize(keyboard_shortcuts);
« no previous file with comments | « no previous file | chrome/browser/ime_input.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698