| Index: content/browser/appcache/appcache_frontend_proxy.cc | 
| diff --git a/content/browser/appcache/appcache_frontend_proxy.cc b/content/browser/appcache/appcache_frontend_proxy.cc | 
| index 0ef1e32b1b8ad7a1b94ea16c2fd785fc40b545d9..a91686a2e43ff8f31c0b5a83633b1905eca0a7cb 100644 | 
| --- a/content/browser/appcache/appcache_frontend_proxy.cc | 
| +++ b/content/browser/appcache/appcache_frontend_proxy.cc | 
| @@ -35,11 +35,13 @@ void AppCacheFrontendProxy::OnProgressEventRaised( | 
| host_ids, url, num_total, num_complete)); | 
| } | 
|  | 
| -void AppCacheFrontendProxy::OnErrorEventRaised( | 
| -    const std::vector<int>& host_ids, | 
| -    const std::string& message) { | 
| -  sender_->Send(new AppCacheMsg_ErrorEventRaised( | 
| -      host_ids, message)); | 
| +void AppCacheFrontendProxy::OnErrorEventRaised(const std::vector<int>& host_ids, | 
| +                                               const std::string& message, | 
| +                                               appcache::ErrorReason reason, | 
| +                                               const GURL& url, | 
| +                                               int status) { | 
| +  sender_->Send( | 
| +      new AppCacheMsg_ErrorEventRaised(host_ids, message, reason, url, status)); | 
| } | 
|  | 
| void AppCacheFrontendProxy::OnLogMessage(int host_id, | 
|  |