| Index: content/browser/net/url_request_mock_http_job.h
|
| diff --git a/content/browser/net/url_request_mock_http_job.h b/content/browser/net/url_request_mock_http_job.h
|
| index 093b686f56320370e4ca85d68e348f4fdee34f47..7cb9270a6858b9d37a0b3fb89d66e83522061532 100644
|
| --- a/content/browser/net/url_request_mock_http_job.h
|
| +++ b/content/browser/net/url_request_mock_http_job.h
|
| @@ -19,10 +19,11 @@ class CONTENT_EXPORT URLRequestMockHTTPJob : public net::URLRequestFileJob {
|
| public:
|
| URLRequestMockHTTPJob(net::URLRequest* request, const FilePath& file_path);
|
|
|
| - virtual bool GetMimeType(std::string* mime_type) const;
|
| - virtual bool GetCharset(std::string* charset);
|
| - virtual void GetResponseInfo(net::HttpResponseInfo* info);
|
| - virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
|
| + virtual bool GetMimeType(std::string* mime_type) const OVERRIDE;
|
| + virtual bool GetCharset(std::string* charset) OVERRIDE;
|
| + virtual void GetResponseInfo(net::HttpResponseInfo* info) OVERRIDE;
|
| + virtual bool IsRedirectResponse(GURL* location,
|
| + int* http_status_code) OVERRIDE;
|
|
|
| static net::URLRequest::ProtocolFactory Factory;
|
|
|
|
|