| Index: net/quic/crypto/crypto_framer.cc
|
| diff --git a/net/quic/crypto/crypto_framer.cc b/net/quic/crypto/crypto_framer.cc
|
| index bc5c8b78134794781318492a21c38298ca9fa717..3f61115f3c8bbee75263e63cb63c81f4b3028fe8 100644
|
| --- a/net/quic/crypto/crypto_framer.cc
|
| +++ b/net/quic/crypto/crypto_framer.cc
|
| @@ -26,10 +26,10 @@ class OneShotVisitor : public CryptoFramerVisitorInterface {
|
| public:
|
| OneShotVisitor() : error_(false) {}
|
|
|
| - virtual void OnError(CryptoFramer* framer) OVERRIDE { error_ = true; }
|
| + virtual void OnError(CryptoFramer* framer) override { error_ = true; }
|
|
|
| virtual void OnHandshakeMessage(
|
| - const CryptoHandshakeMessage& message) OVERRIDE {
|
| + const CryptoHandshakeMessage& message) override {
|
| out_.reset(new CryptoHandshakeMessage(message));
|
| }
|
|
|
|
|