2012-04-03 01:34:16 +00:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that can
|
|
|
|
// be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Defines all the "cef" command-line switches.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_COMMON_CEF_SWITCHES_H_
|
|
|
|
#define CEF_LIBCEF_COMMON_CEF_SWITCHES_H_
|
|
|
|
#pragma once
|
|
|
|
|
2017-01-26 19:14:56 -05:00
|
|
|
#include "build/build_config.h"
|
|
|
|
|
2012-04-03 01:34:16 +00:00
|
|
|
namespace switches {
|
|
|
|
|
2012-06-25 17:52:54 +00:00
|
|
|
extern const char kLogSeverity[];
|
|
|
|
extern const char kLogSeverity_Verbose[];
|
|
|
|
extern const char kLogSeverity_Info[];
|
|
|
|
extern const char kLogSeverity_Warning[];
|
|
|
|
extern const char kLogSeverity_Error[];
|
2019-01-29 14:53:17 -05:00
|
|
|
extern const char kLogSeverity_Fatal[];
|
2012-06-25 17:52:54 +00:00
|
|
|
extern const char kLogSeverity_Disable[];
|
2012-09-06 17:42:16 +00:00
|
|
|
extern const char kResourcesDirPath[];
|
2012-04-03 01:34:16 +00:00
|
|
|
extern const char kLocalesDirPath[];
|
2013-02-07 19:59:40 +00:00
|
|
|
extern const char kDisablePackLoading[];
|
2012-11-02 18:16:28 +00:00
|
|
|
extern const char kUncaughtExceptionStackSize[];
|
2013-02-07 19:59:40 +00:00
|
|
|
extern const char kDefaultEncoding[];
|
2018-09-25 14:01:59 +02:00
|
|
|
extern const char kDisableJavascript[];
|
2013-02-07 19:59:40 +00:00
|
|
|
extern const char kDisableJavascriptCloseWindows[];
|
|
|
|
extern const char kDisableJavascriptAccessClipboard[];
|
|
|
|
extern const char kDisableJavascriptDomPaste[];
|
|
|
|
extern const char kAllowUniversalAccessFromFileUrls[];
|
|
|
|
extern const char kDisableImageLoading[];
|
|
|
|
extern const char kImageShrinkStandaloneToFit[];
|
|
|
|
extern const char kDisableTextAreaResize[];
|
|
|
|
extern const char kDisableTabToLinks[];
|
2018-02-02 19:01:36 -05:00
|
|
|
extern const char kDisablePlugins[];
|
2013-02-13 19:53:41 +00:00
|
|
|
extern const char kPersistSessionCookies[];
|
2015-10-16 20:44:00 -04:00
|
|
|
extern const char kPersistUserPreferences[];
|
2013-03-07 01:20:24 +00:00
|
|
|
extern const char kEnableMediaStream[];
|
2013-03-08 00:41:26 +00:00
|
|
|
extern const char kEnableSpeechInput[];
|
|
|
|
extern const char kEnableProfanityFilter[];
|
2014-10-07 20:44:33 +00:00
|
|
|
extern const char kDisableSpellChecking[];
|
|
|
|
extern const char kEnableSpellingService[];
|
|
|
|
extern const char kOverrideSpellCheckLang[];
|
2015-04-08 15:16:17 +02:00
|
|
|
extern const char kDisableScrollBounce[];
|
2015-07-16 17:40:01 -04:00
|
|
|
extern const char kDisablePdfExtension[];
|
2015-08-31 13:28:07 +02:00
|
|
|
extern const char kWidevineCdmPath[];
|
2015-09-09 16:05:39 +02:00
|
|
|
extern const char kPluginPolicy[];
|
|
|
|
extern const char kPluginPolicy_Allow[];
|
|
|
|
extern const char kPluginPolicy_Detect[];
|
|
|
|
extern const char kPluginPolicy_Block[];
|
2015-10-02 19:03:16 -04:00
|
|
|
extern const char kEnablePreferenceTesting[];
|
2019-07-17 14:47:27 -04:00
|
|
|
extern const char kEnablePrintPreview[];
|
2020-01-23 16:58:01 -05:00
|
|
|
extern const char kDisableNewBrowserInfoTimeout[];
|
2020-06-12 20:54:08 -04:00
|
|
|
extern const char kDevToolsProtocolLogFile[];
|
2020-06-24 22:34:12 -04:00
|
|
|
extern const char kEnableChromeRuntime[];
|
2020-09-24 21:40:47 -04:00
|
|
|
extern const char kDisableChromeLoginPrompt[];
|
2021-04-27 12:39:09 -04:00
|
|
|
extern const char kUserAgentProductAndVersion[];
|
2021-06-11 12:09:16 -04:00
|
|
|
extern const char kDisableRequestHandlingForTesting[];
|
2012-04-03 01:34:16 +00:00
|
|
|
|
2020-08-28 18:39:23 -04:00
|
|
|
#if defined(OS_MAC)
|
2017-01-26 19:14:56 -05:00
|
|
|
extern const char kFrameworkDirPath[];
|
2019-07-25 15:47:46 +00:00
|
|
|
extern const char kMainBundlePath[];
|
2017-01-26 19:14:56 -05:00
|
|
|
#endif
|
|
|
|
|
2012-04-03 01:34:16 +00:00
|
|
|
} // namespace switches
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_COMMON_CEF_SWITCHES_H_
|