Chromium Code Reviews| Index: webkit/blob/blob_url_request_job_unittest.cc |
| =================================================================== |
| --- webkit/blob/blob_url_request_job_unittest.cc (revision 88385) |
| +++ webkit/blob/blob_url_request_job_unittest.cc (working copy) |
| @@ -69,9 +69,7 @@ |
| private: |
| void ReadSome(net::URLRequest* request) { |
| - // job() is not part of the URLRequest public API so it should not be |
| - // used here. Bug 84783. |
| - if (request->job()->is_done()) { |
| + if (!request->is_pending()) { |
|
wtc
2011/06/08 22:16:20
I wonder if we should test !request->status().is_i
|
| RequestComplete(); |
| return; |
| } |