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.
|
|
|
|
|
|
|
|
#include "libcef/common/cef_switches.h"
|
|
|
|
|
|
|
|
namespace switches {
|
|
|
|
|
2012-06-25 19:52:54 +02:00
|
|
|
// Log file path.
|
2013-02-07 20:59:40 +01:00
|
|
|
const char kLogFile[] = "log-file";
|
2012-06-25 19:52:54 +02:00
|
|
|
|
|
|
|
// Severity of messages to log.
|
2013-02-07 20:59:40 +01:00
|
|
|
const char kLogSeverity[] = "log-severity";
|
|
|
|
const char kLogSeverity_Verbose[] = "verbose";
|
|
|
|
const char kLogSeverity_Info[] = "info";
|
|
|
|
const char kLogSeverity_Warning[] = "warning";
|
|
|
|
const char kLogSeverity_Error[] = "error";
|
|
|
|
const char kLogSeverity_ErrorReport[] = "error-report";
|
|
|
|
const char kLogSeverity_Disable[] = "disable";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-11-28 20:03:15 +01:00
|
|
|
// Enable DCHECK for release mode.
|
2013-02-07 20:59:40 +01:00
|
|
|
const char kEnableReleaseDcheck[] = "enable-release-dcheck";
|
2012-11-28 20:03:15 +01:00
|
|
|
|
2012-09-06 19:42:16 +02:00
|
|
|
// Path to resources directory.
|
2013-02-07 20:59:40 +01:00
|
|
|
const char kResourcesDirPath[] = "resources-dir-path";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Path to locales directory.
|
2013-02-07 20:59:40 +01:00
|
|
|
const char kLocalesDirPath[] = "locales-dir-path";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Path to locales directory.
|
2013-02-07 20:59:40 +01:00
|
|
|
const char kDisablePackLoading[] = "disable-pack-loading";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-11-02 19:16:28 +01:00
|
|
|
// Stack size for uncaught exceptions.
|
|
|
|
const char kUncaughtExceptionStackSize[] = "uncaught-exception-stack-size";
|
|
|
|
|
2012-10-29 22:46:02 +01:00
|
|
|
// Context safety implementation type.
|
|
|
|
const char kContextSafetyImplementation[] = "context-safety-implementation";
|
|
|
|
|
2013-02-07 20:59:40 +01:00
|
|
|
// Default encoding.
|
|
|
|
const char kDefaultEncoding[] = "default-encoding";
|
|
|
|
|
|
|
|
// User style sheet location.
|
|
|
|
const char kUserStyleSheetLocation[] = "user-style-sheet-location";
|
|
|
|
|
|
|
|
// Disable opening of windows via JavaScript.
|
|
|
|
const char kDisableJavascriptOpenWindows[] =
|
|
|
|
"disable-javascript-open-windows";
|
|
|
|
|
|
|
|
// Disable closing of windows via JavaScript.
|
|
|
|
const char kDisableJavascriptCloseWindows[] =
|
|
|
|
"disable-javascript-close-windows";
|
|
|
|
|
|
|
|
// Disable clipboard access via JavaScript.
|
|
|
|
const char kDisableJavascriptAccessClipboard[] =
|
|
|
|
"disable-javascript-access-clipboard";
|
|
|
|
|
|
|
|
// Disable DOM paste via JavaScript execCommand("paste").
|
|
|
|
const char kDisableJavascriptDomPaste[] = "disable-javascript-dom-paste";
|
|
|
|
|
|
|
|
// Enable caret browsing.
|
|
|
|
const char kEnableCaretBrowsing[] = "enable-caret-browsing";
|
|
|
|
|
|
|
|
// Allow universal access from file URLs.
|
|
|
|
const char kAllowUniversalAccessFromFileUrls[] =
|
|
|
|
"allow-universal-access-from-files";
|
|
|
|
|
|
|
|
// Disable loading of images from the network. A cached image will still be
|
|
|
|
// rendered if requested.
|
|
|
|
const char kDisableImageLoading[] = "disable-image-loading";
|
|
|
|
|
|
|
|
// Shrink stand-alone images to fit.
|
|
|
|
const char kImageShrinkStandaloneToFit[] = "image-shrink-standalone-to-fit";
|
|
|
|
|
|
|
|
// Disable resizing of text areas.
|
|
|
|
const char kDisableTextAreaResize[] = "disable-text-area-resize";
|
|
|
|
|
|
|
|
// Disable using the tab key to advance focus to links.
|
|
|
|
const char kDisableTabToLinks[] = "disable-tab-to-links";
|
|
|
|
|
|
|
|
// Disable user style sheets.
|
|
|
|
const char kDisableAuthorAndUserStyles[] = "disable-author-and-user-styles";
|
|
|
|
|
|
|
|
// Disable developer tools (WebKit Inspector).
|
|
|
|
const char kDisableDeveloperTools[] = "disable-developer-tools";
|
|
|
|
|
2013-02-13 20:53:41 +01:00
|
|
|
// Persist session cookies.
|
|
|
|
const char kPersistSessionCookies[] = "persist-session-cookies";
|
|
|
|
|
2013-03-07 02:20:24 +01:00
|
|
|
// Enable media (WebRTC audio/video) streaming.
|
|
|
|
const char kEnableMediaStream[] = "enable-media-stream";
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
} // namespace switches
|