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; |
} |