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

Unified Diff: chrome/browser/ui/views/toolbar_view.cc

Issue 11784037: Shows a shortcut key for "Report an issue..." on ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/ui/views/toolbar_view.cc
diff --git a/chrome/browser/ui/views/toolbar_view.cc b/chrome/browser/ui/views/toolbar_view.cc
index 8948e1afd7c298c40e1471bbfcd733bc1d36fc12..f59d27c6eaf4f6044506874b45e09eb271034554 100644
--- a/chrome/browser/ui/views/toolbar_view.cc
+++ b/chrome/browser/ui/views/toolbar_view.cc
@@ -596,6 +596,10 @@ bool ToolbarView::GetAcceleratorForCommandId(int command_id,
case IDC_TASK_MANAGER:
*accelerator = ui::Accelerator(ui::VKEY_ESCAPE, ui::EF_SHIFT_DOWN);
return true;
+ case IDC_FEEDBACK:
+ *accelerator = ui::Accelerator(ui::VKEY_I,
+ ui::EF_SHIFT_DOWN | ui::EF_ALT_DOWN);
+ return true;
#endif
}
// Else, we retrieve the accelerator information from the frame.
« 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