blob: 75d6e24cff490166c51891279e98c0fd142e6a48 [file] [log] [blame]
license.botbf09a502008-08-24 00:55:551// 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.commitd7cae122008-07-26 21:49:384
5// Defines all the "base" command-line switches.
6
7#ifndef BASE_SWITCHES_H__
8#define BASE_SWITCHES_H__
9
10namespace switches {
11
12extern const wchar_t kDebugOnStart[];
13extern const wchar_t kWaitForDebugger[];
14extern const wchar_t kDisableBreakpad[];
15extern const wchar_t kFullMemoryCrashReport[];
16extern const wchar_t kNoErrorDialogs[];
17extern const wchar_t kProcessType[];
18extern const wchar_t kEnableDCHECK[];
19
20} // namespace switches
21
22#endif // CHROME_COMMON_CHROME_SWITCHES_H__
license.botbf09a502008-08-24 00:55:5523