| Index: google_apis/gcm/tools/mcs_probe.cc
|
| diff --git a/google_apis/gcm/tools/mcs_probe.cc b/google_apis/gcm/tools/mcs_probe.cc
|
| index 099035d817441c69405cdcd6f7342691abbb5721..7c83afc0763a1bfcc1e75699a4223e70e813f6d6 100644
|
| --- a/google_apis/gcm/tools/mcs_probe.cc
|
| +++ b/google_apis/gcm/tools/mcs_probe.cc
|
| @@ -148,7 +148,7 @@ class MyTestURLRequestContextGetter : public net::TestURLRequestContextGetter {
|
| const scoped_refptr<base::MessageLoopProxy>& io_message_loop_proxy)
|
| : TestURLRequestContextGetter(io_message_loop_proxy) {}
|
|
|
| - virtual net::TestURLRequestContext* GetURLRequestContext() OVERRIDE {
|
| + virtual net::TestURLRequestContext* GetURLRequestContext() override {
|
| // Construct |context_| lazily so it gets constructed on the right
|
| // thread (the IO thread).
|
| if (!context_)
|
| @@ -175,11 +175,11 @@ class MyTestCertVerifier : public net::CertVerifier {
|
| net::CertVerifyResult* verify_result,
|
| const net::CompletionCallback& callback,
|
| RequestHandle* out_req,
|
| - const net::BoundNetLog& net_log) OVERRIDE {
|
| + const net::BoundNetLog& net_log) override {
|
| return net::OK;
|
| }
|
|
|
| - virtual void CancelRequest(RequestHandle req) OVERRIDE {
|
| + virtual void CancelRequest(RequestHandle req) override {
|
| // Do nothing.
|
| }
|
| };
|
|
|