blob: 4074043e71bf6f73c71f83058d315f5091827280 [file] [log] [blame]
license.botf003cfe2008-08-24 09:55:55 +09001// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit3f4a7322008-07-27 06:49:38 +09004
5// Defines all the "base" command-line switches.
6
deanm@chromium.org5f0f2e982009-03-17 21:47:14 +09007#ifndef BASE_BASE_SWITCHES_H_
8#define BASE_BASE_SWITCHES_H_
initial.commit3f4a7322008-07-27 06:49:38 +09009
10namespace switches {
11
evan@chromium.orge3fca692009-10-13 11:07:25 +090012extern const char kDebugOnStart[];
13extern const char kWaitForDebugger[];
14extern const char kDisableBreakpad[];
15extern const char kFullMemoryCrashReport[];
16extern const char kNoErrorDialogs[];
17extern const char kProcessType[];
18extern const char kEnableDCHECK[];
19extern const char kNoMessageBox[];
initial.commit3f4a7322008-07-27 06:49:38 +090020
21} // namespace switches
22
deanm@chromium.org5f0f2e982009-03-17 21:47:14 +090023#endif // BASE_BASE_SWITCHES_H_