| Index: net/cert/cert_verify_proc_unittest.cc
|
| diff --git a/net/cert/cert_verify_proc_unittest.cc b/net/cert/cert_verify_proc_unittest.cc
|
| index 68900524f3e6c468ad081b532e332375fd7d9418..a71aa9a7553e842e4c39233856e960820f2ec091 100644
|
| --- a/net/cert/cert_verify_proc_unittest.cc
|
| +++ b/net/cert/cert_verify_proc_unittest.cc
|
| @@ -58,7 +58,7 @@ class WellKnownCaCertVerifyProc : public CertVerifyProc {
|
| : is_well_known_(is_well_known) {}
|
|
|
| // CertVerifyProc implementation:
|
| - virtual bool SupportsAdditionalTrustAnchors() const OVERRIDE { return false; }
|
| + virtual bool SupportsAdditionalTrustAnchors() const override { return false; }
|
|
|
| protected:
|
| virtual ~WellKnownCaCertVerifyProc() {}
|
| @@ -69,7 +69,7 @@ class WellKnownCaCertVerifyProc : public CertVerifyProc {
|
| int flags,
|
| CRLSet* crl_set,
|
| const CertificateList& additional_trust_anchors,
|
| - CertVerifyResult* verify_result) OVERRIDE;
|
| + CertVerifyResult* verify_result) override;
|
|
|
| const bool is_well_known_;
|
|
|
|
|