| Index: components/component_updater/test/url_request_post_interceptor.cc
|
| diff --git a/components/component_updater/test/url_request_post_interceptor.cc b/components/component_updater/test/url_request_post_interceptor.cc
|
| index 92c4d0c54a0fea261d78a6db8ea56ad4e7dc735a..882db725c3c4c5e26098b81b2b8f9e32923bb874 100644
|
| --- a/components/component_updater/test/url_request_post_interceptor.cc
|
| +++ b/components/component_updater/test/url_request_post_interceptor.cc
|
| @@ -30,12 +30,12 @@ class URLRequestMockJob : public net::URLRequestSimpleJob {
|
| response_body_(response_body) {}
|
|
|
| protected:
|
| - virtual int GetResponseCode() const OVERRIDE { return response_code_; }
|
| + virtual int GetResponseCode() const override { return response_code_; }
|
|
|
| virtual int GetData(std::string* mime_type,
|
| std::string* charset,
|
| std::string* data,
|
| - const net::CompletionCallback& callback) const OVERRIDE {
|
| + const net::CompletionCallback& callback) const override {
|
| mime_type->assign("text/plain");
|
| charset->assign("US-ASCII");
|
| data->assign(response_body_);
|
| @@ -172,7 +172,7 @@ class URLRequestPostInterceptor::Delegate : public net::URLRequestInterceptor {
|
|
|
| virtual net::URLRequestJob* MaybeInterceptRequest(
|
| net::URLRequest* request,
|
| - net::NetworkDelegate* network_delegate) const OVERRIDE {
|
| + net::NetworkDelegate* network_delegate) const override {
|
| DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
|
|
|
| // Only intercepts POST.
|
|
|