Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 439
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Struct _cef_settings_t

   in cef_types.h

struct _cef_settings_t

Initialization settings. Specify NULL or 0 to get the recommended default values.


Field Summary
 bool auto_detect_proxy_settings_enabled
          Set to true (1) to use the system proxy resolver on Windows when "Automatically detect settings" is checked.
 cef_string_t cache_path
          The location where cache data will be stored on disk.
 cef_string_list_t extra_plugin_paths
          List of fully qualified paths to plugins (including plugin name) that will be loaded in addition to any plugins found in the default search paths.
 cef_graphics_implementation_t graphics_implementation
          The graphics implementation that CEF will use for rendering GPU accelerated content like WebGL, accelerated layers and 3D CSS.
 cef_string_t javascript_flags
          Custom flags that will be used when initializing the V8 JavaScript engine.
 unsigned int local_storage_quota
          Quota limit for localStorage data across all origins.
 cef_string_t locale
          The locale string that will be passed to WebKit.
 cef_string_t log_file
          The directory and file name to use for the debug log.
 cef_log_severity_t log_severity
          The log severity.
 bool multi_threaded_message_loop
          Set to true (1) to have the message loop run in a separate thread.
 cef_string_t product_version
          Value that will be inserted as the product portion of the default User-Agent string.
 unsigned int session_storage_quota
          Quota limit for sessionStorage data per namespace.
 size_t size
          Size of this structure.
 cef_string_t user_agent
          Value that will be returned as the User-Agent HTTP header.
 

Field Detail

auto_detect_proxy_settings_enabled

public bool auto_detect_proxy_settings_enabled;
Set to true (1) to use the system proxy resolver on Windows when "Automatically detect settings" is checked. This setting is disabled by default for performance reasons.

cache_path

public cef_string_t cache_path;
The location where cache data will be stored on disk. If empty an in-memory cache will be used. HTML5 databases such as localStorage will only persist across sessions if a cache path is specified.

extra_plugin_paths

public cef_string_list_t extra_plugin_paths;
List of fully qualified paths to plugins (including plugin name) that will be loaded in addition to any plugins found in the default search paths.

graphics_implementation

public cef_graphics_implementation_t graphics_implementation;
The graphics implementation that CEF will use for rendering GPU accelerated content like WebGL, accelerated layers and 3D CSS.

javascript_flags

public cef_string_t javascript_flags;
Custom flags that will be used when initializing the V8 JavaScript engine. The consequences of using custom flags may not be well tested.

local_storage_quota

public unsigned int local_storage_quota;
Quota limit for localStorage data across all origins. Default size is 5MB.

locale

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

log_file

public cef_string_t log_file;
The directory and file name to use for the debug log. If empty, the default name of "debug.log" will be used and the file will be written to the application directory.

log_severity

public cef_log_severity_t log_severity;
The log severity. Only messages of this severity level or higher will be logged.

multi_threaded_message_loop

public bool multi_threaded_message_loop;
Set to true (1) to have the message loop run in a separate thread. If false (0) than the CefDoMessageLoopWork() function must be called from your application message loop.

product_version

public cef_string_t product_version;
Value that will be inserted as the product portion of the default User-Agent string. If empty the Chromium product version will be used. If |userAgent| is specified this value will be ignored.

session_storage_quota

public unsigned int session_storage_quota;
Quota limit for sessionStorage data per namespace. Default size is 5MB.

size

public size_t size;
Size of this structure.

user_agent

public cef_string_t user_agent;
Value that will be returned as the User-Agent HTTP header. If empty the default User-Agent string will be used.

 Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 439
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt