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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 4273003: Disable DOMUI menu by default. a part of reverting 6497 feature. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 // URL of the html page for Screen Saver. 1166 // URL of the html page for Screen Saver.
1167 const char kScreenSaverUrl[] = "screen-saver-url"; 1167 const char kScreenSaverUrl[] = "screen-saver-url";
1168 1168
1169 // Flag to trigger ChromeOS system log compression during feedback submit. 1169 // Flag to trigger ChromeOS system log compression during feedback submit.
1170 const char kCompressSystemFeedback[] = "compress-sys-feedback"; 1170 const char kCompressSystemFeedback[] = "compress-sys-feedback";
1171 1171
1172 // Forces usage of libcros stub implementation. For testing purposes, this 1172 // Forces usage of libcros stub implementation. For testing purposes, this
1173 // switch separates chrome code from the rest of ChromeOS. 1173 // switch separates chrome code from the rest of ChromeOS.
1174 const char kForceStubLibcros[] = "force-stub-libcros"; 1174 const char kForceStubLibcros[] = "force-stub-libcros";
1175 1175
1176 // Disables DOMUI menu and use gtk menu instead. 1176 // Enables DOMUI menu.
1177 const char kDisableDOMUIMenu[] = "disable-domui-menu"; 1177 const char kEnableDOMUIMenu[] = "enable-domui-menu";
1178 1178
1179 #endif 1179 #endif
1180 1180
1181 #if defined(OS_LINUX) 1181 #if defined(OS_LINUX)
1182 // Specify the amount the trackpad should scroll by. 1182 // Specify the amount the trackpad should scroll by.
1183 const char kScrollPixels[] = "scroll-pixels"; 1183 const char kScrollPixels[] = "scroll-pixels";
1184 #endif 1184 #endif
1185 1185
1186 #if defined(OS_MACOSX) || defined(OS_WIN) 1186 #if defined(OS_MACOSX) || defined(OS_WIN)
1187 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) 1187 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows)
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 1265
1266 // ----------------------------------------------------------------------------- 1266 // -----------------------------------------------------------------------------
1267 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1267 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1268 // 1268 //
1269 // You were going to just dump your switches here, weren't you? Instead, 1269 // You were going to just dump your switches here, weren't you? Instead,
1270 // please put them in alphabetical order above, or in order inside the 1270 // please put them in alphabetical order above, or in order inside the
1271 // appropriate ifdef at the bottom. The order should match the header. 1271 // appropriate ifdef at the bottom. The order should match the header.
1272 // ----------------------------------------------------------------------------- 1272 // -----------------------------------------------------------------------------
1273 1273
1274 } // namespace switches 1274 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698