| Index: net/quic/quic_framer_test.cc
|
| diff --git a/net/quic/quic_framer_test.cc b/net/quic/quic_framer_test.cc
|
| index 45229d8ff10b61abdcb89ddd894a712d98c68124..09506b03492b9fda7206dcd2d4c1e7f6edaf1c2e 100644
|
| --- a/net/quic/quic_framer_test.cc
|
| +++ b/net/quic/quic_framer_test.cc
|
| @@ -97,7 +97,7 @@ const size_t kPublicResetPacketRejectedSequenceNumberOffset =
|
|
|
| class TestEncrypter : public QuicEncrypter {
|
| public:
|
| - virtual ~TestEncrypter() {}
|
| + virtual ~TestEncrypter() OVERRIDE {}
|
| virtual bool SetKey(StringPiece key) OVERRIDE {
|
| return true;
|
| }
|
| @@ -144,7 +144,7 @@ class TestEncrypter : public QuicEncrypter {
|
|
|
| class TestDecrypter : public QuicDecrypter {
|
| public:
|
| - virtual ~TestDecrypter() {}
|
| + virtual ~TestDecrypter() OVERRIDE {}
|
| virtual bool SetKey(StringPiece key) OVERRIDE {
|
| return true;
|
| }
|
| @@ -192,7 +192,7 @@ class TestQuicVisitor : public ::net::QuicFramerVisitorInterface {
|
| accept_public_header_(true) {
|
| }
|
|
|
| - virtual ~TestQuicVisitor() {
|
| + virtual ~TestQuicVisitor() OVERRIDE {
|
| STLDeleteElements(&stream_frames_);
|
| STLDeleteElements(&ack_frames_);
|
| STLDeleteElements(&congestion_feedback_frames_);
|
|
|