| Index: net/url_request/url_request_simple_job.h
|
| diff --git a/net/url_request/url_request_simple_job.h b/net/url_request/url_request_simple_job.h
|
| index dfe4ed2c4d48b7cf73e93fd096a54a72bbc6554d..9e22f2879cdc4bf00c91c9137511c2b66313e25d 100644
|
| --- a/net/url_request/url_request_simple_job.h
|
| +++ b/net/url_request/url_request_simple_job.h
|
| @@ -20,10 +20,12 @@ class NET_EXPORT URLRequestSimpleJob : public URLRequestJob {
|
| public:
|
| explicit URLRequestSimpleJob(URLRequest* request);
|
|
|
| - virtual void Start();
|
| - virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
|
| - virtual bool GetMimeType(std::string* mime_type) const;
|
| - virtual bool GetCharset(std::string* charset);
|
| + virtual void Start() OVERRIDE;
|
| + virtual bool ReadRawData(IOBuffer* buf,
|
| + int buf_size,
|
| + int *bytes_read) OVERRIDE;
|
| + virtual bool GetMimeType(std::string* mime_type) const OVERRIDE;
|
| + virtual bool GetCharset(std::string* charset) OVERRIDE;
|
|
|
| protected:
|
| virtual ~URLRequestSimpleJob();
|
|
|