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

Unified Diff: chrome/browser/defaults.cc

Issue 10038033: Nukes wrench_menu_model_chromeos and folds functionality int (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix non-chromeos build Created 8 years, 8 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/defaults.cc
diff --git a/chrome/browser/defaults.cc b/chrome/browser/defaults.cc
index a2a3bf5293b36a63d5250ac28f55926c84063012..6568e52725f88a5c8d6df6f2893c6d1c3da630c2 100644
--- a/chrome/browser/defaults.cc
+++ b/chrome/browser/defaults.cc
@@ -29,7 +29,11 @@ const int kMiniTabWidth = 64;
const bool kCanToggleSystemTitleBar = false;
const bool kRestorePopups = false;
const bool kShowImportOnBookmarkBar = false;
-const bool kShowExitMenuItem = true;
+const bool kShowExitMenuItem = false;
+const bool kShowFeedbackMenuItem = true;
+const bool kShowHelpMenuItemIcon = true;
+const bool kShowSyncSetupMenuItem = false;
+const bool kShowUpgradeMenuItem = false;
const bool kDownloadPageHasShowInFolder = true;
const bool kSizeTabButtonToTopOfTabStrip = false;
const bool kSyncAutoStarts = true;
@@ -65,6 +69,10 @@ const bool kShowExitMenuItem = false;
#else
const bool kShowExitMenuItem = true;
#endif
+const bool kShowFeedbackMenuItem = false;
+const bool kShowHelpMenuItemIcon = false;
+const bool kShowSyncSetupMenuItem = true;
+const bool kShowUpgradeMenuItem = true;
const bool kSizeTabButtonToTopOfTabStrip = false;
const bool kSyncAutoStarts = false;
const bool kShowOtherBrowsersInAboutMemory = true;

Powered by Google App Engine
This is Rietveld 408576698