base_switches.h 932 B

123456789101112131415161718192021222324252627282930313233
  1. // Copyright (c) 2012 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.
  4. // Defines all the "base" command-line switches.
  5. #ifndef BASE_BASE_SWITCHES_H_
  6. #define BASE_BASE_SWITCHES_H_
  7. #include "base/build_config.h"
  8. namespace switches {
  9. extern const char kDisableBreakpad[];
  10. extern const char kEnableCrashReporter[];
  11. extern const char kFullMemoryCrashReport[];
  12. extern const char kLowEndDeviceMode[];
  13. extern const char kNoErrorDialogs[];
  14. extern const char kProfilerTiming[];
  15. extern const char kProfilerTimingDisabledValue[];
  16. extern const char kTestChildProcess[];
  17. extern const char kTraceToConsole[];
  18. extern const char kV[];
  19. extern const char kVModule[];
  20. extern const char kWaitForDebugger[];
  21. #if defined(OS_POSIX)
  22. extern const char kEnableCrashReporterForTesting[];
  23. #endif
  24. } // namespace switches
  25. #endif // BASE_BASE_SWITCHES_H_