blob: 0585186038f664b0d4e188cd8d57c1a6ba9bdd9c [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[];
ruuda07bb15e2015-10-12 12:30:4115extern const char kDisableLowEndDeviceMode[];
[email protected]f6727762013-10-22 21:19:0116extern const char kEnableCrashReporter[];
ruuda07bb15e2015-10-12 12:30:4117extern const char kEnableHeapProfiling[];
dskiba3de5ae32016-04-28 19:40:2918extern const char kEnableHeapProfilingModeNative[];
ruuda07bb15e2015-10-12 12:30:4119extern const char kEnableLowEndDeviceMode[];
blundell6e85b7c2015-09-29 12:33:3520extern const char kForceFieldTrials[];
[email protected]46fe10d62011-05-26 22:03:2821extern const char kFullMemoryCrashReport[];
[email protected]46fe10d62011-05-26 22:03:2822extern const char kNoErrorDialogs[];
[email protected]915b344f2013-12-11 12:49:1723extern const char kProfilerTiming[];
24extern const char kProfilerTimingDisabledValue[];
fsamuel2573dfb2016-07-08 23:02:4425extern const char kProfilingFile[];
[email protected]46fe10d62011-05-26 22:03:2826extern const char kTestChildProcess[];
wfh8f20e832016-03-12 02:09:5927extern const char kTestDoNotInitializeIcu[];
enne04213de2014-09-25 19:49:5628extern const char kTraceToFile[];
29extern const char kTraceToFileName[];
[email protected]46fe10d62011-05-26 22:03:2830extern const char kV[];
31extern const char kVModule[];
32extern const char kWaitForDebugger[];
initial.commitd7cae122008-07-26 21:49:3833
jschuhb156d5b2015-06-23 13:36:2834#if defined(OS_WIN)
35extern const char kDisableUsbKeyboardDetect[];
36#endif
37
[email protected]6664958a2013-11-07 08:35:2938#if defined(OS_POSIX)
39extern const char kEnableCrashReporterForTesting[];
40#endif
41
initial.commitd7cae122008-07-26 21:49:3842} // namespace switches
43
[email protected]71a76d02009-03-17 12:47:1444#endif // BASE_BASE_SWITCHES_H_