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