blob: 95f6bffb23d504d063633affae54fde456b65de8 [file] [log] [blame]
[email protected]3455af4e2012-03-12 15:35:121// Copyright (c) 2012 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commitd7cae122008-07-26 21:49:384
5// Defines all the "base" command-line switches.
6
[email protected]71a76d02009-03-17 12:47:147#ifndef BASE_BASE_SWITCHES_H_
8#define BASE_BASE_SWITCHES_H_
initial.commitd7cae122008-07-26 21:49:389
[email protected]8ab19f692013-07-18 08:09:3210#include "build/build_config.h"
11
initial.commitd7cae122008-07-26 21:49:3812namespace switches {
13
[email protected]46fe10d62011-05-26 22:03:2814extern const char kDisableBreakpad[];
[email protected]f6727762013-10-22 21:19:0115extern const char kEnableCrashReporter[];
blundell6e85b7c2015-09-29 12:33:3516extern const char kForceFieldTrials[];
[email protected]46fe10d62011-05-26 22:03:2817extern const char kFullMemoryCrashReport[];
ssidfeb3f47d2014-12-16 16:04:0218extern const char kEnableLowEndDeviceMode[];
19extern const char kDisableLowEndDeviceMode[];
[email protected]46fe10d62011-05-26 22:03:2820extern const char kNoErrorDialogs[];
[email protected]915b344f2013-12-11 12:49:1721extern const char kProfilerTiming[];
22extern const char kProfilerTimingDisabledValue[];
[email protected]46fe10d62011-05-26 22:03:2823extern const char kTestChildProcess[];
[email protected]915b344f2013-12-11 12:49:1724extern const char kTraceToConsole[];
enne04213de2014-09-25 19:49:5625extern const char kTraceToFile[];
26extern const char kTraceToFileName[];
[email protected]46fe10d62011-05-26 22:03:2827extern const char kV[];
28extern const char kVModule[];
29extern const char kWaitForDebugger[];
initial.commitd7cae122008-07-26 21:49:3830
jschuhb156d5b2015-06-23 13:36:2831#if defined(OS_WIN)
32extern const char kDisableUsbKeyboardDetect[];
33#endif
34
[email protected]6664958a2013-11-07 08:35:2935#if defined(OS_POSIX)
36extern const char kEnableCrashReporterForTesting[];
37#endif
38
initial.commitd7cae122008-07-26 21:49:3839} // namespace switches
40
[email protected]71a76d02009-03-17 12:47:1441#endif // BASE_BASE_SWITCHES_H_