security/sandbox/chromium/base/base_switches.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/security/sandbox/chromium/base/base_switches.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
     1.5 +// Use of this source code is governed by a BSD-style license that can be
     1.6 +// found in the LICENSE file.
     1.7 +
     1.8 +// Defines all the "base" command-line switches.
     1.9 +
    1.10 +#ifndef BASE_BASE_SWITCHES_H_
    1.11 +#define BASE_BASE_SWITCHES_H_
    1.12 +
    1.13 +#include "build/build_config.h"
    1.14 +
    1.15 +namespace switches {
    1.16 +
    1.17 +extern const char kDebugOnStart[];
    1.18 +extern const char kDisableBreakpad[];
    1.19 +extern const char kEnableDCHECK[];
    1.20 +extern const char kFullMemoryCrashReport[];
    1.21 +extern const char kNoErrorDialogs[];
    1.22 +extern const char kTestChildProcess[];
    1.23 +extern const char kV[];
    1.24 +extern const char kVModule[];
    1.25 +extern const char kWaitForDebugger[];
    1.26 +extern const char kTraceToConsole[];
    1.27 +
    1.28 +#if defined(OS_POSIX)
    1.29 +extern const char kEnableCrashReporter[];
    1.30 +#endif
    1.31 +
    1.32 +}  // namespace switches
    1.33 +
    1.34 +#endif  // BASE_BASE_SWITCHES_H_

mercurial