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

Unified Diff: platform/network/ResourceRequestBase.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/ResourceRequestBase.h ('k') | platform/network/ResourceResponseBase.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform/network/ResourceRequestBase.cpp
===================================================================
--- platform/network/ResourceRequestBase.cpp (revision 44202)
+++ platform/network/ResourceRequestBase.cpp (working copy)
@@ -63,6 +63,9 @@
}
request->setHTTPBody(data->m_httpBody);
request->setAllowHTTPCookies(data->m_allowHTTPCookies);
+#if ENABLE(APPLICATION_CACHE)
+ request->setApplicationCacheContextID(data->m_appcacheContextID);
+#endif
return request;
}
@@ -84,6 +87,9 @@
if (m_httpBody)
data->m_httpBody = m_httpBody->deepCopy();
data->m_allowHTTPCookies = m_allowHTTPCookies;
+#if ENABLE(APPLICATION_CACHE)
+ data->m_appcacheContextID = m_appcacheContextID;
+#endif
return data;
}
« no previous file with comments | « platform/network/ResourceRequestBase.h ('k') | platform/network/ResourceResponseBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698