Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(686)

Unified Diff: net/quic/quic_framer_test.cc

Issue 126243002: Add the override annotation to all necessary methods in .../quic/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_);

Powered by Google App Engine
This is Rietveld 408576698