1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ipc/chromium/src/base/base_switches.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +// Copyright (c) 2006-2008 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 +#if defined(COMPILER_MSVC) 1.14 +#include <string.h> 1.15 +#endif 1.16 + 1.17 +namespace switches { 1.18 + 1.19 +extern const wchar_t kDebugOnStart[]; 1.20 +extern const wchar_t kWaitForDebugger[]; 1.21 +extern const wchar_t kDisableBreakpad[]; 1.22 +extern const wchar_t kFullMemoryCrashReport[]; 1.23 +extern const wchar_t kNoErrorDialogs[]; 1.24 +extern const wchar_t kProcessType[]; 1.25 +extern const wchar_t kEnableDCHECK[]; 1.26 +extern const wchar_t kForceHTTPS[]; 1.27 + 1.28 +} // namespace switches 1.29 + 1.30 +#endif // BASE_BASE_SWITCHES_H_