From f25b353b1f7832d62158c344cbd5598dcd0e138c Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 9 Aug 2011 13:22:10 +0000 Subject: [PATCH] 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 --- include/internal/cef_types.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/internal/cef_types.h b/include/internal/cef_types.h index b3f26798a..45802f1d1 100644 --- a/include/internal/cef_types.h +++ b/include/internal/cef_types.h @@ -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; ///