| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |