Index: chrome/renderer/renderer_webapplicationcachehost_impl.cc |
=================================================================== |
--- chrome/renderer/renderer_webapplicationcachehost_impl.cc (revision 54622) |
+++ chrome/renderer/renderer_webapplicationcachehost_impl.cc (working copy) |
@@ -44,8 +44,10 @@ |
void RendererWebApplicationCacheHostImpl::OnCacheSelected( |
const appcache::AppCacheInfo& info) { |
- // TODO(jochen): Send a ViewHostMsg_AppCacheAccessed to the browser once this |
- // methods gets the manifest url passed. |
+ if (!info.manifest_url.is_empty()) { |
+ RenderThread::current()->Send(new ViewHostMsg_AppCacheAccessed( |
+ routing_id_, info.manifest_url, false)); |
+ } |
WebApplicationCacheHostImpl::OnCacheSelected(info); |
} |