Commit db3bbbfe authored by mostynb's avatar mostynb Committed by Commit bot

use OVERRIDE macro consistently in spdy_framer_test.cc

Followup to CL 485833002, which mixed use of the OVERRIDE macro and
bare override.

BUG=400336

Review URL: https://codereview.chromium.org/562353004

Cr-Commit-Position: refs/heads/master@{#294645}
parent 282871ec
......@@ -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_;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment