| Index: content/browser/web_contents/web_contents_impl.cc | 
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc | 
| index 9cc3694d86c211ad6431178516882a15c1c3560f..a678802ce9b93be5e406fee7f7e1f917cbc263ba 100644 | 
| --- a/content/browser/web_contents/web_contents_impl.cc | 
| +++ b/content/browser/web_contents/web_contents_impl.cc | 
| @@ -2397,6 +2397,7 @@ void WebContentsImpl::OnBrowserPluginMessage(const IPC::Message& message) { | 
|  | 
| void WebContentsImpl::OnDidDownloadImage( | 
| int id, | 
| +    int http_status_code, | 
| const GURL& image_url, | 
| int requested_size, | 
| const std::vector<SkBitmap>& bitmaps) { | 
| @@ -2407,7 +2408,7 @@ void WebContentsImpl::OnDidDownloadImage( | 
| return; | 
| } | 
| if (!iter->second.is_null()) { | 
| -    iter->second.Run(id, image_url, requested_size, bitmaps); | 
| +    iter->second.Run(id, http_status_code, image_url, requested_size, bitmaps); | 
| } | 
| image_download_map_.erase(id); | 
| } | 
|  |