| Index: net/test/url_request/url_request_mock_http_job.h
|
| diff --git a/net/test/url_request/url_request_mock_http_job.h b/net/test/url_request/url_request_mock_http_job.h
|
| index eb68a2d27f126e1708f8d2af5f320dce7449dfe5..1a01a3084be2b9f6e847d2d2b0683ff080c14507 100644
|
| --- a/net/test/url_request/url_request_mock_http_job.h
|
| +++ b/net/test/url_request/url_request_mock_http_job.h
|
| @@ -34,13 +34,12 @@ class URLRequestMockHTTPJob : public URLRequestFileJob {
|
| const base::FilePath& file_path,
|
| const scoped_refptr<base::TaskRunner>& task_runner);
|
|
|
| - virtual void Start() override;
|
| - virtual bool GetMimeType(std::string* mime_type) const override;
|
| - virtual int GetResponseCode() const override;
|
| - virtual bool GetCharset(std::string* charset) override;
|
| - virtual void GetResponseInfo(HttpResponseInfo* info) override;
|
| - virtual bool IsRedirectResponse(GURL* location,
|
| - int* http_status_code) override;
|
| + void Start() override;
|
| + bool GetMimeType(std::string* mime_type) const override;
|
| + int GetResponseCode() const override;
|
| + bool GetCharset(std::string* charset) override;
|
| + void GetResponseInfo(HttpResponseInfo* info) override;
|
| + bool IsRedirectResponse(GURL* location, int* http_status_code) override;
|
|
|
| // Adds the testing URLs to the URLRequestFilter.
|
| static void AddUrlHandler(
|
| @@ -74,7 +73,7 @@ class URLRequestMockHTTPJob : public URLRequestFileJob {
|
| const scoped_refptr<base::SequencedWorkerPool>& worker_pool);
|
|
|
| protected:
|
| - virtual ~URLRequestMockHTTPJob();
|
| + ~URLRequestMockHTTPJob() override;
|
|
|
| private:
|
| void GetResponseInfoConst(HttpResponseInfo* info) const;
|
|
|