blob: 75d6e24cff490166c51891279e98c0fd142e6a48 [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
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.botf003cfe2008-08-24 09:55:55 +090023