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

Unified Diff: webkit/api/src/WebURLResponse.cpp

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/api/src/WebURLRequest.cpp ('k') | webkit/appcache/web_application_cache_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/src/WebURLResponse.cpp
===================================================================
--- webkit/api/src/WebURLResponse.cpp (revision 25594)
+++ webkit/api/src/WebURLResponse.cpp (working copy)
@@ -210,7 +210,7 @@
long long WebURLResponse::appCacheID() const
{
- return m_private->m_resourceResponse->getAppCacheID();
+ return m_private->m_resourceResponse->appCacheID();
}
void WebURLResponse::setAppCacheID(long long appCacheID)
@@ -218,6 +218,16 @@
m_private->m_resourceResponse->setAppCacheID(appCacheID);
}
+WebURL WebURLResponse::appCacheManifestURL() const
+{
+ return m_private->m_resourceResponse->appCacheManifestURL();
+}
+
+void WebURLResponse::setAppCacheManifestURL(const WebURL& url)
+{
+ m_private->m_resourceResponse->setAppCacheManifestURL(url);
+}
+
WebCString WebURLResponse::securityInfo() const
{
// FIXME: getSecurityInfo is misnamed.
« no previous file with comments | « webkit/api/src/WebURLRequest.cpp ('k') | webkit/appcache/web_application_cache_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698