| Index: content/test/net/url_request_slow_download_job.h
|
| diff --git a/content/test/net/url_request_slow_download_job.h b/content/test/net/url_request_slow_download_job.h
|
| index 78faa38476ab453ab93f703dc8dd9ea20af73cfc..08b6dc08c1daff63de5cce8dce447724572f0f4e 100644
|
| --- a/content/test/net/url_request_slow_download_job.h
|
| +++ b/content/test/net/url_request_slow_download_job.h
|
| @@ -35,12 +35,10 @@ class URLRequestSlowDownloadJob : public net::URLRequestJob {
|
| void CheckDoneStatus();
|
|
|
| // net::URLRequestJob methods
|
| - virtual void Start() override;
|
| - virtual bool GetMimeType(std::string* mime_type) const override;
|
| - virtual void GetResponseInfo(net::HttpResponseInfo* info) override;
|
| - virtual bool ReadRawData(net::IOBuffer* buf,
|
| - int buf_size,
|
| - int *bytes_read) override;
|
| + void Start() override;
|
| + bool GetMimeType(std::string* mime_type) const override;
|
| + void GetResponseInfo(net::HttpResponseInfo* info) override;
|
| + bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read) override;
|
|
|
| static net::URLRequestJob* Factory(net::URLRequest* request,
|
| net::NetworkDelegate* network_delegate,
|
| @@ -56,7 +54,7 @@ class URLRequestSlowDownloadJob : public net::URLRequestJob {
|
| private:
|
| URLRequestSlowDownloadJob(net::URLRequest* request,
|
| net::NetworkDelegate* network_delegate);
|
| - virtual ~URLRequestSlowDownloadJob();
|
| + ~URLRequestSlowDownloadJob() override;
|
|
|
| // Enum indicating where we are in the read after a call to
|
| // FillBufferHelper.
|
|
|