michael@0: // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: michael@0: // Defines all the "base" command-line switches. michael@0: michael@0: #ifndef BASE_BASE_SWITCHES_H_ michael@0: #define BASE_BASE_SWITCHES_H_ michael@0: michael@0: #if defined(COMPILER_MSVC) michael@0: #include michael@0: #endif michael@0: michael@0: namespace switches { michael@0: michael@0: extern const wchar_t kDebugOnStart[]; michael@0: extern const wchar_t kWaitForDebugger[]; michael@0: extern const wchar_t kDisableBreakpad[]; michael@0: extern const wchar_t kFullMemoryCrashReport[]; michael@0: extern const wchar_t kNoErrorDialogs[]; michael@0: extern const wchar_t kProcessType[]; michael@0: extern const wchar_t kEnableDCHECK[]; michael@0: extern const wchar_t kForceHTTPS[]; michael@0: michael@0: } // namespace switches michael@0: michael@0: #endif // BASE_BASE_SWITCHES_H_