| Index: net/spdy/spdy_test_util_common.h
|
| diff --git a/net/spdy/spdy_test_util_common.h b/net/spdy/spdy_test_util_common.h
|
| index 108e278541667ad0904983ec467204b66312921f..897f6708abfbb43b43fc533f6b97f5f2490d33cb 100644
|
| --- a/net/spdy/spdy_test_util_common.h
|
| +++ b/net/spdy/spdy_test_util_common.h
|
| @@ -159,9 +159,9 @@ class MockECSignatureCreator : public crypto::ECSignatureCreator {
|
| // crypto::ECSignatureCreator
|
| virtual bool Sign(const uint8* data,
|
| int data_len,
|
| - std::vector<uint8>* signature) OVERRIDE;
|
| + std::vector<uint8>* signature) override;
|
| virtual bool DecodeSignature(const std::vector<uint8>& signature,
|
| - std::vector<uint8>* out_raw_sig) OVERRIDE;
|
| + std::vector<uint8>* out_raw_sig) override;
|
|
|
| private:
|
| crypto::ECPrivateKey* key_;
|
| @@ -177,7 +177,7 @@ class MockECSignatureCreatorFactory : public crypto::ECSignatureCreatorFactory {
|
|
|
| // crypto::ECSignatureCreatorFactory
|
| virtual crypto::ECSignatureCreator* Create(
|
| - crypto::ECPrivateKey* key) OVERRIDE;
|
| + crypto::ECPrivateKey* key) override;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(MockECSignatureCreatorFactory);
|
|
|