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

Unified Diff: views/accelerator.cc

Issue 149302: Add the keys used by the back/forward menu items to the accelerator map so th... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « app/resources/app_strings.grd ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/accelerator.cc
===================================================================
--- views/accelerator.cc (revision 20003)
+++ views/accelerator.cc (working copy)
@@ -43,6 +43,15 @@
case VK_DELETE:
string_id = IDS_APP_DELETE_KEY;
break;
+ case VK_LEFT:
+ string_id = IDS_APP_LEFT_ARROW_KEY;
+ break;
+ case VK_RIGHT:
+ string_id = IDS_APP_RIGHT_ARROW_KEY;
+ break;
+ case VK_BACK:
+ string_id = IDS_APP_BACKSPACE_KEY;
+ break;
case VK_F1:
string_id = IDS_APP_F1_KEY;
break;
« no previous file with comments | « app/resources/app_strings.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698