michael@0: // Copyright (c) 2012 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: #include "build/build_config.h" michael@0: michael@0: namespace switches { michael@0: michael@0: extern const char kDebugOnStart[]; michael@0: extern const char kDisableBreakpad[]; michael@0: extern const char kEnableDCHECK[]; michael@0: extern const char kFullMemoryCrashReport[]; michael@0: extern const char kNoErrorDialogs[]; michael@0: extern const char kTestChildProcess[]; michael@0: extern const char kV[]; michael@0: extern const char kVModule[]; michael@0: extern const char kWaitForDebugger[]; michael@0: extern const char kTraceToConsole[]; michael@0: michael@0: #if defined(OS_POSIX) michael@0: extern const char kEnableCrashReporter[]; michael@0: #endif michael@0: michael@0: } // namespace switches michael@0: michael@0: #endif // BASE_BASE_SWITCHES_H_