blob: bbd590bad05da7d213932ba5ff7b5c1da59999d5 [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[];
[email protected]46fe10d62011-05-26 22:03:2816extern const char kFullMemoryCrashReport[];
ssidfeb3f47d2014-12-16 16:04:0217extern const char kEnableLowEndDeviceMode[];
18extern const char kDisableLowEndDeviceMode[];
[email protected]46fe10d62011-05-26 22:03:2819extern const char kNoErrorDialogs[];
[email protected]915b344f2013-12-11 12:49:1720extern const char kProfilerTiming[];
21extern const char kProfilerTimingDisabledValue[];
[email protected]46fe10d62011-05-26 22:03:2822extern const char kTestChildProcess[];
[email protected]915b344f2013-12-11 12:49:1723extern const char kTraceToConsole[];
enne04213de2014-09-25 19:49:5624extern const char kTraceToFile[];
25extern const char kTraceToFileName[];
[email protected]46fe10d62011-05-26 22:03:2826extern const char kV[];
27extern const char kVModule[];
28extern const char kWaitForDebugger[];
initial.commitd7cae122008-07-26 21:49:3829
jschuhb156d5b2015-06-23 13:36:2830#if defined(OS_WIN)
31extern const char kDisableUsbKeyboardDetect[];
32#endif
33
[email protected]6664958a2013-11-07 08:35:2934#if defined(OS_POSIX)
35extern const char kEnableCrashReporterForTesting[];
36#endif
37
initial.commitd7cae122008-07-26 21:49:3838} // namespace switches
39
[email protected]71a76d02009-03-17 12:47:1440#endif // BASE_BASE_SWITCHES_H_