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

Unified Diff: webkit/glue/weburlloader_impl.cc

Issue 201026: Add appCacheManifestUrl data member to WebURLResponse, and use it to detect '... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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
« no previous file with comments | « webkit/appcache/web_application_cache_host_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/weburlloader_impl.cc
===================================================================
--- webkit/glue/weburlloader_impl.cc (revision 25594)
+++ webkit/glue/weburlloader_impl.cc (working copy)
@@ -151,8 +151,7 @@
response->setExpectedContentLength(info.content_length);
response->setSecurityInfo(info.security_info);
response->setAppCacheID(info.appcache_id);
- // TODO(michaeln):
- // response->setAppCacheManifestUrl(info.appcache_manifest_url);
+ response->setAppCacheManifestURL(info.appcache_manifest_url);
const net::HttpResponseHeaders* headers = info.headers;
if (!headers)
@@ -338,7 +337,7 @@
load_flags,
requestor_pid,
FromTargetType(request.targetType()),
- request.appCacheContextID(),
+ request.appCacheHostID(),
request.requestorID()));
if (!request.httpBody().isNull()) {
« no previous file with comments | « webkit/appcache/web_application_cache_host_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698