Index: content/browser/in_process_webkit/webkit_context.cc |
diff --git a/content/browser/in_process_webkit/webkit_context.cc b/content/browser/in_process_webkit/webkit_context.cc |
index 635991633ef3e05d7a2ae1a83789a6d971fe3c84..fbf4b2946c2e79946cc0fcbcda43b2f719b09e37 100644 |
--- a/content/browser/in_process_webkit/webkit_context.cc |
+++ b/content/browser/in_process_webkit/webkit_context.cc |
@@ -10,6 +10,7 @@ |
WebKitContext::WebKitContext( |
bool is_incognito, const FilePath& data_path, |
quota::SpecialStoragePolicy* special_storage_policy, |
+ const content::ResourceContext& resource_context, |
bool clear_local_state_on_exit, |
quota::QuotaManagerProxy* quota_manager_proxy, |
base::MessageLoopProxy* webkit_thread_loop) |
@@ -18,7 +19,7 @@ WebKitContext::WebKitContext( |
clear_local_state_on_exit_(clear_local_state_on_exit), |
ALLOW_THIS_IN_INITIALIZER_LIST( |
dom_storage_context_(new DOMStorageContext( |
- this, special_storage_policy))), |
+ this, special_storage_policy, resource_context))), |
ALLOW_THIS_IN_INITIALIZER_LIST( |
indexed_db_context_(new IndexedDBContext( |
this, special_storage_policy, quota_manager_proxy, |