| Index: content/browser/net/view_http_cache_job_factory.cc
|
| diff --git a/content/browser/net/view_http_cache_job_factory.cc b/content/browser/net/view_http_cache_job_factory.cc
|
| index 57bf2aeaa0273d069fbd3ba3d2175af390122f85..e80cac725e7449052e2572e52ed2a6d6bcf8accd 100644
|
| --- a/content/browser/net/view_http_cache_job_factory.cc
|
| +++ b/content/browser/net/view_http_cache_job_factory.cc
|
| @@ -34,16 +34,15 @@ class ViewHttpCacheJob : public net::URLRequestJob {
|
| }
|
|
|
| // net::URLRequestJob implementation.
|
| - virtual void Start() override;
|
| - virtual void Kill() override;
|
| - virtual bool GetMimeType(std::string* mime_type) const override{
|
| + void Start() override;
|
| + void Kill() override;
|
| + bool GetMimeType(std::string* mime_type) const override {
|
| return core_->GetMimeType(mime_type);
|
| }
|
| - virtual bool GetCharset(std::string* charset) override{
|
| + bool GetCharset(std::string* charset) override {
|
| return core_->GetCharset(charset);
|
| }
|
| - virtual bool ReadRawData(net::IOBuffer* buf,
|
| - int buf_size, int *bytes_read) override{
|
| + bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read) override {
|
| return core_->ReadRawData(buf, buf_size, bytes_read);
|
| }
|
|
|
| @@ -83,7 +82,7 @@ class ViewHttpCacheJob : public net::URLRequestJob {
|
| DISALLOW_COPY_AND_ASSIGN(Core);
|
| };
|
|
|
| - virtual ~ViewHttpCacheJob() {}
|
| + ~ViewHttpCacheJob() override {}
|
|
|
| void StartAsync();
|
| void OnStartCompleted();
|
|
|