diff options
Diffstat (limited to 'webkit/glue/webpreferences.h')
-rw-r--r-- | webkit/glue/webpreferences.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/glue/webpreferences.h b/webkit/glue/webpreferences.h index 34c93b5..d75138a 100644 --- a/webkit/glue/webpreferences.h +++ b/webkit/glue/webpreferences.h @@ -41,6 +41,7 @@ struct WebPreferences { bool allow_scripts_to_close_windows; bool uses_page_cache; bool remote_fonts_enabled; + bool xss_auditor_enabled; // TODO(tc): User style sheets will not work in chrome because it tries to // load the style sheet using a request without a frame. @@ -77,6 +78,7 @@ struct WebPreferences { allow_scripts_to_close_windows(false), uses_page_cache(false), remote_fonts_enabled(false), + xss_auditor_enabled(false), user_style_sheet_enabled(false) { } }; |