Improve documentation for CefBrowserSettings.user_style_sheet_location (issue #261).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@275 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2011-08-09 13:22:10 +00:00
parent f0d1898928
commit f25b353b1f
1 changed files with 6 additions and 1 deletions

View File

@ -285,9 +285,14 @@ typedef struct _cef_browser_settings_t
///
// Set to true (1) to enable the user style sheet for all pages.
// |user_style_sheet_location| must be set to the style sheet URL.
///
bool user_style_sheet_enabled;
///
// Location of the user style sheet. This must be a data URL of the form
// "data:text/css;charset=utf-8;base64,csscontent" where "csscontent" is the
// base64 encoded contents of the CSS file.
///
cef_string_t user_style_sheet_location;
///