Index: webkit/appcache/appcache_backend_impl.cc |
=================================================================== |
--- webkit/appcache/appcache_backend_impl.cc (revision 53710) |
+++ webkit/appcache/appcache_backend_impl.cc (working copy) |
@@ -123,4 +123,13 @@ |
return true; |
} |
+void AppCacheBackendImpl::GetResourceList( |
+ int host_id, std::vector<appcache::AppCacheResourceInfo>* resource_infos) { |
+ AppCacheHost* host = GetHost(host_id); |
+ if (!host) |
+ return; |
+ |
+ host->GetResourceList(resource_infos); |
+} |
+ |
} // namespace appcache |