| Index: content/child/web_url_loader_impl.cc
|
| diff --git a/content/child/web_url_loader_impl.cc b/content/child/web_url_loader_impl.cc
|
| index d4b4ec1fe83f9464eda8ae2e428efe2b5e6e7acd..a5b08daefc1d0ee5af764aa6fccf058757807b0b 100644
|
| --- a/content/child/web_url_loader_impl.cc
|
| +++ b/content/child/web_url_loader_impl.cc
|
| @@ -342,22 +342,22 @@ class WebURLLoaderImpl::Context : public base::RefCounted<Context>,
|
| SyncLoadResponse* sync_load_response);
|
|
|
| // RequestPeer methods:
|
| - virtual void OnUploadProgress(uint64 position, uint64 size) OVERRIDE;
|
| + virtual void OnUploadProgress(uint64 position, uint64 size) override;
|
| virtual bool OnReceivedRedirect(const net::RedirectInfo& redirect_info,
|
| - const ResourceResponseInfo& info) OVERRIDE;
|
| - virtual void OnReceivedResponse(const ResourceResponseInfo& info) OVERRIDE;
|
| - virtual void OnDownloadedData(int len, int encoded_data_length) OVERRIDE;
|
| + const ResourceResponseInfo& info) override;
|
| + virtual void OnReceivedResponse(const ResourceResponseInfo& info) override;
|
| + virtual void OnDownloadedData(int len, int encoded_data_length) override;
|
| virtual void OnReceivedData(const char* data,
|
| int data_length,
|
| - int encoded_data_length) OVERRIDE;
|
| - virtual void OnReceivedCachedMetadata(const char* data, int len) OVERRIDE;
|
| + int encoded_data_length) override;
|
| + virtual void OnReceivedCachedMetadata(const char* data, int len) override;
|
| virtual void OnCompletedRequest(
|
| int error_code,
|
| bool was_ignored_by_handler,
|
| bool stale_copy_in_cache,
|
| const std::string& security_info,
|
| const base::TimeTicks& completion_time,
|
| - int64 total_transfer_size) OVERRIDE;
|
| + int64 total_transfer_size) override;
|
|
|
| private:
|
| friend class base::RefCounted<Context>;
|
|
|