Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Unified Diff: webkit/glue/webpreferences.h

Issue 201048: Support running tests under LayoutTests/http/tests/local as local file, in or... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/glue/webpreferences.h
===================================================================
--- webkit/glue/webpreferences.h (revision 25942)
+++ webkit/glue/webpreferences.h (working copy)
@@ -54,6 +54,8 @@
bool user_style_sheet_enabled;
GURL user_style_sheet_location;
+ bool allow_universal_access_from_file_urls;
+
// We try to keep the default values the same as the default values in
// chrome, except for the cases where it would require lots of extra work for
// the embedder to use the same default value.
@@ -89,7 +91,8 @@
databases_enabled(false),
session_storage_enabled(false),
application_cache_enabled(false),
- user_style_sheet_enabled(false) {
+ user_style_sheet_enabled(false),
+ allow_universal_access_from_file_urls(false) {
}
void Apply(WebView* web_view) const;

Powered by Google App Engine
This is Rietveld 408576698