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

Unified Diff: net/spdy/spdy_framer_test.cc

Issue 562353004: use OVERRIDE macro consistently in spdy_framer_test.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer_test.cc
diff --git a/net/spdy/spdy_framer_test.cc b/net/spdy/spdy_framer_test.cc
index 8438692edf9e2ff92cfad6646918cd6f7d24505d..2676b4df72c65c8234fcf9d18832d191276bea17 100644
--- a/net/spdy/spdy_framer_test.cc
+++ b/net/spdy/spdy_framer_test.cc
@@ -199,7 +199,7 @@ class SpdyFramerTestUtil {
}
virtual bool OnUnknownFrame(SpdyStreamId stream_id,
- int frame_type) override {
+ int frame_type) OVERRIDE {
LOG(FATAL);
return false;
}
@@ -452,7 +452,7 @@ class TestSpdyVisitor : public SpdyFramerVisitorInterface,
++priority_count_;
}
- virtual bool OnUnknownFrame(SpdyStreamId stream_id, int frame_type) override {
+ virtual bool OnUnknownFrame(SpdyStreamId stream_id, int frame_type) OVERRIDE {
DLOG(INFO) << "Unknown frame type " << frame_type;
return on_unknown_frame_result_;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698