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

Unified Diff: chrome/common/resource_dispatcher.cc

Issue 9712: AppCachePlumbing (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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: 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(

Powered by Google App Engine
This is Rietveld 408576698