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

Unified Diff: chrome/browser/global_keyboard_shortcuts_mac.mm

Issue 164133: Support cntrl-tab to switch tabs on OS X. (Closed)
Patch Set: Created 11 years, 4 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 | no next file » | 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 f703232ef2f1160a32296e2a8f3f399db3734648..6b7c7faf82261927ce847b04381a5984cdf07f96 100644
--- a/chrome/browser/global_keyboard_shortcuts_mac.mm
+++ b/chrome/browser/global_keyboard_shortcuts_mac.mm
@@ -11,8 +11,10 @@ const KeyboardShortcutData* GetKeyboardShortCutTable(size_t* num_entries) {
static const KeyboardShortcutData keyboard_shortcuts[] = {
{true, true, false, 30 /* ] */, IDC_SELECT_NEXT_TAB},
{false, false, true, 121 /* pg down */, IDC_SELECT_NEXT_TAB},
+ {false, false, true, 48 /* tab */, IDC_SELECT_NEXT_TAB},
{true, true, false, 33 /* [ */, IDC_SELECT_PREVIOUS_TAB},
{false, false, true, 116 /* pg_up */, IDC_SELECT_PREVIOUS_TAB},
+ {false, true, true, 48 /* tab */, IDC_SELECT_PREVIOUS_TAB},
};
*num_entries = arraysize(keyboard_shortcuts);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698