| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1263 const char kRelauncherProcess[] = "relauncher"; | 1263 const char kRelauncherProcess[] = "relauncher"; |
| 1264 | 1264 |
| 1265 // Uses mock keychain for testing purposes, which prevents blocking dialogs | 1265 // Uses mock keychain for testing purposes, which prevents blocking dialogs |
| 1266 // from causing timeouts. | 1266 // from causing timeouts. |
| 1267 const char kUseMockKeychain[] = "use-mock-keychain"; | 1267 const char kUseMockKeychain[] = "use-mock-keychain"; |
| 1268 #endif | 1268 #endif |
| 1269 | 1269 |
| 1270 #if !defined(OS_MACOSX) | 1270 #if !defined(OS_MACOSX) |
| 1271 // Enables Kiosk mode. | 1271 // Enables Kiosk mode. |
| 1272 const char kKioskMode[] = "kiosk"; | 1272 const char kKioskMode[] = "kiosk"; |
| 1273 |
| 1274 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
| 1275 // See http://crbug.com/31395. |
| 1276 const char kKioskModePrinting[] = "kiosk-printing"; |
| 1273 #endif | 1277 #endif |
| 1274 | 1278 |
| 1275 #if defined(TOOLKIT_VIEWS) | 1279 #if defined(TOOLKIT_VIEWS) |
| 1276 // Enables debug paint in views framework. Enabling this causes the damaged | 1280 // Enables debug paint in views framework. Enabling this causes the damaged |
| 1277 // region being painted to flash in red. | 1281 // region being painted to flash in red. |
| 1278 const char kDebugViewsPaint[] = "debug-views-paint"; | 1282 const char kDebugViewsPaint[] = "debug-views-paint"; |
| 1279 | 1283 |
| 1280 // Tells chrome to interpret events from these devices as touch events. Only | 1284 // Tells chrome to interpret events from these devices as touch events. Only |
| 1281 // available with XInput 2 (i.e. X server 1.8 or above). The id's of the | 1285 // available with XInput 2 (i.e. X server 1.8 or above). The id's of the |
| 1282 // devices can be retrieved from 'xinput list'. | 1286 // devices can be retrieved from 'xinput list'. |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1331 | 1335 |
| 1332 // ----------------------------------------------------------------------------- | 1336 // ----------------------------------------------------------------------------- |
| 1333 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1337 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1334 // | 1338 // |
| 1335 // You were going to just dump your switches here, weren't you? Instead, please | 1339 // You were going to just dump your switches here, weren't you? Instead, please |
| 1336 // put them in alphabetical order above, or in order inside the appropriate | 1340 // put them in alphabetical order above, or in order inside the appropriate |
| 1337 // ifdef at the bottom. The order should match the header. | 1341 // ifdef at the bottom. The order should match the header. |
| 1338 // ----------------------------------------------------------------------------- | 1342 // ----------------------------------------------------------------------------- |
| 1339 | 1343 |
| 1340 } // namespace switches | 1344 } // namespace switches |
| OLD | NEW |