2012-04-03 03:34:16 +02: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-27 01:14:56 +01:00
|
|
|
#include "build/build_config.h"
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
namespace switches {
|
|
|
|
|
2012-06-25 19:52:54 +02: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 20:53:17 +01:00
|
|
|
extern const char kLogSeverity_Fatal[];
|
2012-06-25 19:52:54 +02:00
|
|
|
extern const char kLogSeverity_Disable[];
|
2012-09-06 19:42:16 +02:00
|
|
|
extern const char kResourcesDirPath[];
|
2012-04-03 03:34:16 +02:00
|
|
|
extern const char kLocalesDirPath[];
|
2013-02-07 20:59:40 +01:00
|
|
|
extern const char kDisablePackLoading[];
|
2012-11-02 19:16:28 +01:00
|
|
|
extern const char kUncaughtExceptionStackSize[];
|
2013-02-07 20:59:40 +01:00
|
|
|
extern const char kDefaultEncoding[];
|
2018-09-25 14:01:59 +02:00
|
|
|
extern const char kDisableJavascript[];
|
2013-02-07 20:59:40 +01: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[];
|
2013-02-13 20:53:41 +01:00
|
|
|
extern const char kPersistSessionCookies[];
|
2015-10-17 02:44:00 +02:00
|
|
|
extern const char kPersistUserPreferences[];
|
2013-03-07 02:20:24 +01:00
|
|
|
extern const char kEnableMediaStream[];
|
2013-03-08 01:41:26 +01:00
|
|
|
extern const char kEnableSpeechInput[];
|
|
|
|
extern const char kEnableProfanityFilter[];
|
2014-10-07 22:44:33 +02: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 23:40:01 +02:00
|
|
|
extern const char kDisablePdfExtension[];
|
2019-07-17 20:47:27 +02:00
|
|
|
extern const char kEnablePrintPreview[];
|
2020-01-23 22:58:01 +01:00
|
|
|
extern const char kDisableNewBrowserInfoTimeout[];
|
2020-06-13 02:54:08 +02:00
|
|
|
extern const char kDevToolsProtocolLogFile[];
|
2020-06-25 04:34:12 +02:00
|
|
|
extern const char kEnableChromeRuntime[];
|
2020-09-25 03:40:47 +02:00
|
|
|
extern const char kDisableChromeLoginPrompt[];
|
2021-04-27 18:39:09 +02:00
|
|
|
extern const char kUserAgentProductAndVersion[];
|
2021-06-11 18:09:16 +02:00
|
|
|
extern const char kDisableRequestHandlingForTesting[];
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2022-01-24 18:58:02 +01:00
|
|
|
#if BUILDFLAG(IS_MAC)
|
2017-01-27 01:14:56 +01:00
|
|
|
extern const char kFrameworkDirPath[];
|
2019-07-25 17:47:46 +02:00
|
|
|
extern const char kMainBundlePath[];
|
2017-01-27 01:14:56 +01:00
|
|
|
#endif
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
} // namespace switches
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_COMMON_CEF_SWITCHES_H_
|