tfarina@chromium.org | ef21d1d | 2012-03-13 00:35:12 +0900 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
license.bot | f003cfe | 2008-08-24 09:55:55 +0900 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
initial.commit | 3f4a732 | 2008-07-27 06:49:38 +0900 | [diff] [blame] | 4 | |
| 5 | // Defines all the "base" command-line switches. |
| 6 | |
deanm@chromium.org | 5f0f2e98 | 2009-03-17 21:47:14 +0900 | [diff] [blame] | 7 | #ifndef BASE_BASE_SWITCHES_H_ |
| 8 | #define BASE_BASE_SWITCHES_H_ |
initial.commit | 3f4a732 | 2008-07-27 06:49:38 +0900 | [diff] [blame] | 9 | |
jochen@chromium.org | a7768cc | 2013-07-18 17:09:32 +0900 | [diff] [blame] | 10 | #include "build/build_config.h" |
| 11 | |
initial.commit | 3f4a732 | 2008-07-27 06:49:38 +0900 | [diff] [blame] | 12 | namespace switches { |
| 13 | |
rvargas@google.com | 29b1009 | 2011-05-27 07:03:28 +0900 | [diff] [blame] | 14 | extern const char kDisableBreakpad[]; |
jochen@chromium.org | 22bb79e | 2013-10-23 06:19:01 +0900 | [diff] [blame] | 15 | extern const char kEnableCrashReporter[]; |
rvargas@google.com | 29b1009 | 2011-05-27 07:03:28 +0900 | [diff] [blame] | 16 | extern const char kFullMemoryCrashReport[]; |
ssid | 108428f | 2014-12-17 01:04:02 +0900 | [diff] [blame] | 17 | extern const char kEnableLowEndDeviceMode[]; |
| 18 | extern const char kDisableLowEndDeviceMode[]; |
rvargas@google.com | 29b1009 | 2011-05-27 07:03:28 +0900 | [diff] [blame] | 19 | extern const char kNoErrorDialogs[]; |
qsr@chromium.org | 4b1cc32 | 2013-12-11 21:49:17 +0900 | [diff] [blame] | 20 | extern const char kProfilerTiming[]; |
| 21 | extern const char kProfilerTimingDisabledValue[]; |
rvargas@google.com | 29b1009 | 2011-05-27 07:03:28 +0900 | [diff] [blame] | 22 | extern const char kTestChildProcess[]; |
qsr@chromium.org | 4b1cc32 | 2013-12-11 21:49:17 +0900 | [diff] [blame] | 23 | extern const char kTraceToConsole[]; |
enne | 7002b80 | 2014-09-26 04:49:56 +0900 | [diff] [blame] | 24 | extern const char kTraceToFile[]; |
| 25 | extern const char kTraceToFileName[]; |
rvargas@google.com | 29b1009 | 2011-05-27 07:03:28 +0900 | [diff] [blame] | 26 | extern const char kV[]; |
| 27 | extern const char kVModule[]; |
| 28 | extern const char kWaitForDebugger[]; |
initial.commit | 3f4a732 | 2008-07-27 06:49:38 +0900 | [diff] [blame] | 29 | |
jschuh | 0bf79e2 | 2015-06-23 22:36:28 +0900 | [diff] [blame^] | 30 | #if defined(OS_WIN) |
| 31 | extern const char kDisableUsbKeyboardDetect[]; |
| 32 | #endif |
| 33 | |
jochen@chromium.org | c108733 | 2013-11-07 17:35:29 +0900 | [diff] [blame] | 34 | #if defined(OS_POSIX) |
| 35 | extern const char kEnableCrashReporterForTesting[]; |
| 36 | #endif |
| 37 | |
initial.commit | 3f4a732 | 2008-07-27 06:49:38 +0900 | [diff] [blame] | 38 | } // namespace switches |
| 39 | |
deanm@chromium.org | 5f0f2e98 | 2009-03-17 21:47:14 +0900 | [diff] [blame] | 40 | #endif // BASE_BASE_SWITCHES_H_ |