Chromium Code Reviews| Index: content/renderer/image_loading_helper.cc |
| diff --git a/content/renderer/image_loading_helper.cc b/content/renderer/image_loading_helper.cc |
| index c996984af9bbf34a4629a65e306d91f032cbefdd..bb2b3a5c0b007b057ea3d95b88f2c92122cf414f 100644 |
| --- a/content/renderer/image_loading_helper.cc |
| +++ b/content/renderer/image_loading_helper.cc |
| @@ -54,6 +54,7 @@ void ImageLoadingHelper::OnDownloadImage(int id, |
| Send(new ImageHostMsg_DidDownloadImage(routing_id(), |
| id, |
| + 0, |
|
sky
2013/05/03 20:24:54
Is 0 right here?
mef
2013/05/03 21:45:59
I think it is more correct than 200, as no request
|
| image_url, |
| image_size, |
| result_images)); |
| @@ -85,6 +86,7 @@ void ImageLoadingHelper::DidDownloadImage( |
| // Notify requester of image download status. |
| Send(new ImageHostMsg_DidDownloadImage(routing_id(), |
| fetcher->id(), |
| + fetcher->http_status_code(), |
| fetcher->image_url(), |
| requested_size, |
| images)); |