Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
michael@0 | 2 | // Use of this source code is governed by a BSD-style license that can be |
michael@0 | 3 | // found in the LICENSE file. |
michael@0 | 4 | |
michael@0 | 5 | // Defines all the "base" command-line switches. |
michael@0 | 6 | |
michael@0 | 7 | #ifndef BASE_BASE_SWITCHES_H_ |
michael@0 | 8 | #define BASE_BASE_SWITCHES_H_ |
michael@0 | 9 | |
michael@0 | 10 | #include "build/build_config.h" |
michael@0 | 11 | |
michael@0 | 12 | namespace switches { |
michael@0 | 13 | |
michael@0 | 14 | extern const char kDebugOnStart[]; |
michael@0 | 15 | extern const char kDisableBreakpad[]; |
michael@0 | 16 | extern const char kEnableDCHECK[]; |
michael@0 | 17 | extern const char kFullMemoryCrashReport[]; |
michael@0 | 18 | extern const char kNoErrorDialogs[]; |
michael@0 | 19 | extern const char kTestChildProcess[]; |
michael@0 | 20 | extern const char kV[]; |
michael@0 | 21 | extern const char kVModule[]; |
michael@0 | 22 | extern const char kWaitForDebugger[]; |
michael@0 | 23 | extern const char kTraceToConsole[]; |
michael@0 | 24 | |
michael@0 | 25 | #if defined(OS_POSIX) |
michael@0 | 26 | extern const char kEnableCrashReporter[]; |
michael@0 | 27 | #endif |
michael@0 | 28 | |
michael@0 | 29 | } // namespace switches |
michael@0 | 30 | |
michael@0 | 31 | #endif // BASE_BASE_SWITCHES_H_ |