Commit 5d926196 authored by mad@chromium.org's avatar mad@chromium.org

Re-Enable the About menu option on non-cros-touch.

BUG=140281
TEST=Make sure the About Google Chrome options shows up in the wrench menu went we want it, and doesn't when we don't :-)


Review URL: https://chromiumcodereview.appspot.com/10825281

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151041 0039d316-1c4b-4281-b951-d872f2087c98
parent 9a5a4cd0
......@@ -504,7 +504,11 @@ void WrenchMenuModel::Build() {
AddItemWithStringId(IDC_OPTIONS, IDS_SETTINGS);
if (!is_touch_menu) {
// On ChromeOS-Touch, we don't want the about/background pages menu options.
#if defined(OS_CHROMEOS)
if (!is_touch_menu)
#endif
{
AddItem(IDC_ABOUT, l10n_util::GetStringUTF16(IDS_ABOUT));
string16 num_background_pages = base::FormatNumber(
TaskManager::GetBackgroundPageCount());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment