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

Unified Diff: webkit/glue/webview_impl.cc

Issue 149792: Enable DOM_STORAGE in our build. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 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/webview_impl.cc
===================================================================
--- webkit/glue/webview_impl.cc (revision 20932)
+++ webkit/glue/webview_impl.cc (working copy)
@@ -1424,6 +1424,8 @@
settings->setUsesPageCache(preferences.uses_page_cache);
settings->setDownloadableBinaryFontsEnabled(preferences.remote_fonts_enabled);
settings->setXSSAuditorEnabled(preferences.xss_auditor_enabled);
+ settings->setLocalStorageEnabled(preferences.local_storage_enabled);
+ settings->setSessionStorageEnabled(preferences.session_storage_enabled);
// This setting affects the behavior of links in an editable region:
// clicking the link should select it rather than navigate to it.

Powered by Google App Engine
This is Rietveld 408576698