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

Unified Diff: platform/network/ResourceResponseBase.cpp

Issue 113554: For local review prior to sending to webkit (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 11 years, 6 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 | « platform/network/ResourceResponseBase.h ('k') | platform/network/chromium/ResourceRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform/network/ResourceResponseBase.cpp
===================================================================
--- platform/network/ResourceResponseBase.cpp (revision 44202)
+++ platform/network/ResourceResponseBase.cpp (working copy)
@@ -55,6 +55,10 @@
response->m_haveParsedCacheControl = data->m_haveParsedCacheControl;
response->m_cacheControlContainsMustRevalidate = data->m_cacheControlContainsMustRevalidate;
response->m_cacheControlContainsNoCache = data->m_cacheControlContainsNoCache;
+#if ENABLE(APPLICATION_CACHE)
+ response->m_appcacheID = data->m_appcacheID;
+ response->m_manifestURL = data->m_manifestURL;
+#endif
return response;
}
@@ -74,6 +78,10 @@
data->m_haveParsedCacheControl = m_haveParsedCacheControl;
data->m_cacheControlContainsMustRevalidate = m_cacheControlContainsMustRevalidate;
data->m_cacheControlContainsNoCache = m_cacheControlContainsNoCache;
+#if ENABLE(APPLICATION_CACHE)
+ data->m_appcacheID = m_appcacheID;
+ data->m_manifestURL = m_manifestURL;
+#endif
return data;
}
« no previous file with comments | « platform/network/ResourceResponseBase.h ('k') | platform/network/chromium/ResourceRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698