| Index: net/quic/quic_crypto_stream.h
|
| diff --git a/net/quic/quic_crypto_stream.h b/net/quic/quic_crypto_stream.h
|
| index 6698e3ece57030b87ba82a9e9ad046acb10803b2..37a2a91128760ebbef6267e6a3eadafa921a5f23 100644
|
| --- a/net/quic/quic_crypto_stream.h
|
| +++ b/net/quic/quic_crypto_stream.h
|
| @@ -34,13 +34,12 @@ class NET_EXPORT_PRIVATE QuicCryptoStream
|
| explicit QuicCryptoStream(QuicSession* session);
|
|
|
| // CryptoFramerVisitorInterface implementation
|
| - virtual void OnError(CryptoFramer* framer) override;
|
| - virtual void OnHandshakeMessage(
|
| - const CryptoHandshakeMessage& message) override;
|
| + void OnError(CryptoFramer* framer) override;
|
| + void OnHandshakeMessage(const CryptoHandshakeMessage& message) override;
|
|
|
| // ReliableQuicStream implementation
|
| - virtual uint32 ProcessRawData(const char* data, uint32 data_len) override;
|
| - virtual QuicPriority EffectivePriority() const override;
|
| + uint32 ProcessRawData(const char* data, uint32 data_len) override;
|
| + QuicPriority EffectivePriority() const override;
|
|
|
| // Sends |message| to the peer.
|
| // TODO(wtc): return a success/failure status.
|
|
|