Packagecom.tuarua.webview
Classpublic class CefSettings
InheritanceCefSettings Inheritance Object



Public Properties
 PropertyDefined By
  acceptLanguageList : String = en-US,en
Comma delimited ordered list of language codes without any whitespace that will be used in the "Accept-Language" HTTP header.
CefSettings
  cachePath : String
The location where cache data will be stored on disk.
CefSettings
  commandLineArgs : Vector.<Object>
Add custom command line arguments to this collection, they will be added in OnBeforeCommandLineProcessing.
CefSettings
  enablePrintPreview : Boolean
Set command line argument to enable Print Preview See https://bitbucket.org/chromiumembedded/cef/issues/123/add-support-for-print-preview for details.
CefSettings
  locale : String = en-US
The locale string that will be passed to WebKit.
CefSettings
  logSeverity : int = 99
The log severity.
CefSettings
  remoteDebuggingPort : int = 8088
Set to a value between 1024 and 65535 to enable remote debugging on the specified port.
CefSettings
  userDataPath : String
The location where user data such as spell checking dictionary files will be stored on disk.
CefSettings
Public Methods
 MethodDefined By
  
CefSettings
Property Detail
acceptLanguageListproperty
public var acceptLanguageList:String = en-US,en

Comma delimited ordered list of language codes without any whitespace that will be used in the "Accept-Language" HTTP header. May be set globally using the CefSettings.AcceptLanguageList value. If both values are empty then "en-US,en" will be used.

cachePathproperty 
public var cachePath:String

The location where cache data will be stored on disk. If empty then browsers will be created in "incognito mode" where in-memory caches are used for storage and no data is persisted to disk. HTML5 databases such as localStorage will only persist across sessions if a cache path is specified. Can be overridden for individual CefRequestContext instances via the RequestContextSettings.CachePath value.

commandLineArgsproperty 
public var commandLineArgs:Vector.<Object>

Add custom command line arguments to this collection, they will be added in OnBeforeCommandLineProcessing.

enablePrintPreviewproperty 
public var enablePrintPreview:Boolean

Set command line argument to enable Print Preview See https://bitbucket.org/chromiumembedded/cef/issues/123/add-support-for-print-preview for details.

localeproperty 
public var locale:String = en-US

The locale string that will be passed to WebKit. If empty the default locale of "en-US" will be used.

logSeverityproperty 
public var logSeverity:int = 99

The log severity. Only messages of this severity level or higher will be logged. Also configurable using the "log-severity" command-line switch with a value of "verbose", "info", "warning", "error", "error-report" or "disable".

remoteDebuggingPortproperty 
public var remoteDebuggingPort:int = 8088

Set to a value between 1024 and 65535 to enable remote debugging on the specified port. For example, if 8080 is specified the remote debugging URL will be http://localhost:8080. CEF can be remotely debugged from any CEF or Chrome browser window. Also configurable using the "remote-debugging-port" command-line switch.

userDataPathproperty 
public var userDataPath:String

The location where user data such as spell checking dictionary files will be stored on disk. If empty then the default platform-specific user data directory "Local Settings\Application Data\CEF\User Data"directory under the user profile directory on Windows).

Constructor Detail
CefSettings()Constructor
public function CefSettings()