5e8a73bd7a
Review URL: http://codereview.chromium.org/118188 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19225 0039d316-1c4b-4281-b951-d872f2087c98
25 linhas
725 B
C++
25 linhas
725 B
C++
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Defines all the "base" command-line switches.
|
|
|
|
#ifndef BASE_BASE_SWITCHES_H_
|
|
#define BASE_BASE_SWITCHES_H_
|
|
|
|
namespace switches {
|
|
|
|
extern const wchar_t kDebugOnStart[];
|
|
extern const wchar_t kWaitForDebugger[];
|
|
extern const wchar_t kDisableBreakpad[];
|
|
extern const wchar_t kFullMemoryCrashReport[];
|
|
extern const wchar_t kNoErrorDialogs[];
|
|
extern const wchar_t kProcessType[];
|
|
extern const wchar_t kEnableDCHECK[];
|
|
extern const wchar_t kForceHTTPS[];
|
|
extern const wchar_t kIsolatedWorld[];
|
|
|
|
} // namespace switches
|
|
|
|
#endif // BASE_BASE_SWITCHES_H_
|