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

Unified Diff: chrome/browser/gtk/standard_menus.cc

Issue 164280: First step to create application shortcuts on Linux. (Closed)
Patch Set: now tested 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
Index: chrome/browser/gtk/standard_menus.cc
diff --git a/chrome/browser/gtk/standard_menus.cc b/chrome/browser/gtk/standard_menus.cc
index 72a66ac5740468ddc37a294db3d176fd4c3579e3..bf1ef7db049cf300a6c4a47f6de2e15a4271a479 100644
--- a/chrome/browser/gtk/standard_menus.cc
+++ b/chrome/browser/gtk/standard_menus.cc
@@ -37,12 +37,8 @@ struct MenuCreateMaterial developer_menu_materials[] = {
};
struct MenuCreateMaterial standard_page_menu_materials[] = {
- // The Create App Shortcuts menu item hasn't been implemented yet.
- // Remove it until it is.
- // http://code.google.com/p/chromium/issues/detail?id=17251
- // { MENU_NORMAL, IDC_CREATE_SHORTCUTS, IDS_CREATE_SHORTCUTS },
- // { MENU_SEPARATOR },
-
+ { MENU_NORMAL, IDC_CREATE_SHORTCUTS, IDS_CREATE_SHORTCUTS },
+ { MENU_SEPARATOR },
{ MENU_NORMAL, IDC_CUT, IDS_CUT, 0, NULL, GDK_x, GDK_CONTROL_MASK, true },
{ MENU_NORMAL, IDC_COPY, IDS_COPY, 0, NULL, GDK_c, GDK_CONTROL_MASK, true },
{ MENU_NORMAL, IDC_PASTE, IDS_PASTE, 0, NULL, GDK_v, GDK_CONTROL_MASK, true },

Powered by Google App Engine
This is Rietveld 408576698