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

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

Issue 1826: Moved some Page menu elements to App menu (they fit there much more); these a... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 3 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 | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/toolbar_view.cc
===================================================================
--- chrome/browser/views/toolbar_view.cc (revision 1886)
+++ chrome/browser/views/toolbar_view.cc (working copy)
@@ -487,12 +487,6 @@
anchor = Menu::TOPLEFT;
Menu menu(this, anchor, hwnd);
- menu.AppendMenuItemWithLabel(IDC_NEWTAB, l10n_util::GetString(IDS_NEWTAB));
- menu.AppendMenuItemWithLabel(IDC_NEWWINDOW,
- l10n_util::GetString(IDS_NEWWINDOW));
- menu.AppendMenuItemWithLabel(IDC_GOOFFTHERECORD,
- l10n_util::GetString(IDS_GOOFFTHERECORD));
- menu.AppendSeparator();
// The install menu may be dynamically generated with a contextual label.
// See browser_commands.cc.
menu.AppendMenuItemWithLabel(IDC_CREATE_SHORTCUT,
@@ -562,6 +556,12 @@
anchor = Menu::TOPLEFT;
Menu menu(this, anchor, hwnd);
+ menu.AppendMenuItemWithLabel(IDC_NEWTAB, l10n_util::GetString(IDS_NEWTAB));
+ menu.AppendMenuItemWithLabel(IDC_NEWWINDOW,
+ l10n_util::GetString(IDS_NEWWINDOW));
+ menu.AppendMenuItemWithLabel(IDC_GOOFFTHERECORD,
+ l10n_util::GetString(IDS_GOOFFTHERECORD));
+ menu.AppendSeparator();
menu.AppendMenuItemWithLabel(IDC_SHOW_BOOKMARKS_BAR,
l10n_util::GetString(IDS_SHOW_BOOKMARK_BAR));
menu.AppendSeparator();
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698