| Index: content/child/appcache/appcache_dispatcher.cc | 
| diff --git a/content/child/appcache/appcache_dispatcher.cc b/content/child/appcache/appcache_dispatcher.cc | 
| index c3b4ec60898f2455e31534625aabba2c7f6bade3..96cbfe950a7b541116c12d72a628ad112b1629e7 100644 | 
| --- a/content/child/appcache/appcache_dispatcher.cc | 
| +++ b/content/child/appcache/appcache_dispatcher.cc | 
| @@ -52,10 +52,12 @@ void AppCacheDispatcher::OnProgressEventRaised( | 
| frontend_->OnProgressEventRaised(host_ids, url, num_total, num_complete); | 
| } | 
|  | 
| -void AppCacheDispatcher::OnErrorEventRaised( | 
| -    const std::vector<int>& host_ids, | 
| -    const std::string& message) { | 
| -  frontend_->OnErrorEventRaised(host_ids, message); | 
| +void AppCacheDispatcher::OnErrorEventRaised(const std::vector<int>& host_ids, | 
| +                                            const std::string& message, | 
| +                                            appcache::ErrorReason reason, | 
| +                                            const GURL& url, | 
| +                                            int status) { | 
| +  frontend_->OnErrorEventRaised(host_ids, message, reason, url, status); | 
| } | 
|  | 
| void AppCacheDispatcher::OnLogMessage( | 
|  |