Index: chrome/common/resource_dispatcher.cc |
=================================================================== |
--- chrome/common/resource_dispatcher.cc (revision 13181) |
+++ chrome/common/resource_dispatcher.cc (working copy) |
@@ -55,6 +55,7 @@ |
int origin_pid, |
ResourceType::Type resource_type, |
uint32 request_context, |
+ int app_cache_context_id, |
int route_id); |
virtual ~IPCResourceLoaderBridge(); |
@@ -109,6 +110,7 @@ |
int origin_pid, |
ResourceType::Type resource_type, |
uint32 request_context, |
+ int app_cache_context_id, |
int route_id) |
: peer_(NULL), |
dispatcher_(dispatcher), |
@@ -127,6 +129,7 @@ |
request_.origin_pid = origin_pid; |
request_.resource_type = resource_type; |
request_.request_context = request_context; |
+ request_.app_cache_context_id = app_cache_context_id; |
#ifdef LOG_RESOURCE_REQUESTS |
url_ = url.possibly_invalid_spec(); |
@@ -530,6 +533,7 @@ |
int origin_pid, |
ResourceType::Type resource_type, |
uint32 request_context, |
+ int app_cache_context_id, |
int route_id) { |
return new webkit_glue::IPCResourceLoaderBridge(this, method, url, policy_url, |
referrer, frame_origin, |
@@ -537,7 +541,9 @@ |
default_mime_type, |
flags, origin_pid, |
resource_type, |
- request_context, route_id); |
+ request_context, |
+ app_cache_context_id, |
+ route_id); |
} |
bool ResourceDispatcher::IsResourceDispatcherMessage( |