blob: 7686e76316ec04f37982643710c9de320359f4c1 [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 kDebugOnStart[];
15extern const char kDisableBreakpad[];
16extern const char kEnableDCHECK[];
17extern const char kFullMemoryCrashReport[];
[email protected]46fe10d62011-05-26 22:03:2818extern const char kNoErrorDialogs[];
[email protected]46fe10d62011-05-26 22:03:2819extern const char kTestChildProcess[];
20extern const char kV[];
21extern const char kVModule[];
22extern const char kWaitForDebugger[];
[email protected]2bf64a92013-07-11 23:10:4023extern const char kTraceToConsole[];
initial.commitd7cae122008-07-26 21:49:3824
[email protected]8ab19f692013-07-18 08:09:3225#if defined(OS_POSIX)
26extern const char kEnableCrashReporter[];
27#endif
28
initial.commitd7cae122008-07-26 21:49:3829} // namespace switches
30
[email protected]71a76d02009-03-17 12:47:1431#endif // BASE_BASE_SWITCHES_H_