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

Unified Diff: webkit/glue/resource_loader_bridge.h

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: webkit/glue/resource_loader_bridge.h
===================================================================
--- webkit/glue/resource_loader_bridge.h (revision 13181)
+++ webkit/glue/resource_loader_bridge.h (working copy)
@@ -67,6 +67,9 @@
// Content length if available. -1 if not available
int64 content_length;
+ // The appcache this response was loaded from, or kNoAppCacheId.
+ int64 app_cache_id;
+
// A platform specific handle for a file that carries response data. This
// entry is used if the resource request is of type ResourceType::MEDIA and
// the underlying cache layer keeps the response data in a standalone file.
@@ -171,6 +174,9 @@
// request_type indicates if the current request is the main frame load, a
// sub-frame load, or a sub objects load.
//
+ // app_cache_context_id identifies that app cache context this request is
+ // associated with.
+ //
// routing_id passed to this function allows it to be associated with a
// frame's network context.
static ResourceLoaderBridge* Create(const std::string& method,
@@ -184,6 +190,7 @@
int load_flags,
int requestor_pid,
ResourceType::Type request_type,
+ int app_cache_context_id,
int routing_id);
// Call this method before calling Start() to append a chunk of binary data

Powered by Google App Engine
This is Rietveld 408576698