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

Unified Diff: net/quic/test_tools/simple_quic_framer.cc

Issue 2743883002: Remove PathCloseFrame, QuicPathId, DefaultPathId and InvalidPathId. (Closed)
Patch Set: Created 3 years, 9 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 | « net/quic/test_tools/quic_test_utils.cc ('k') | net/tools/quic/chlo_extractor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/simple_quic_framer.cc
diff --git a/net/quic/test_tools/simple_quic_framer.cc b/net/quic/test_tools/simple_quic_framer.cc
index 18b449cf80ddbe7fd8d27588f63d55040fc69a9d..734b1dc03c6c115152895d9fcbad1bc51114e3cc 100644
--- a/net/quic/test_tools/simple_quic_framer.cc
+++ b/net/quic/test_tools/simple_quic_framer.cc
@@ -106,11 +106,6 @@ class SimpleFramerVisitor : public QuicFramerVisitorInterface {
return true;
}
- bool OnPathCloseFrame(const QuicPathCloseFrame& frame) override {
- path_close_frames_.push_back(frame);
- return true;
- }
-
void OnPacketComplete() override {}
const QuicPacketHeader& header() const { return header_; }
@@ -151,7 +146,6 @@ class SimpleFramerVisitor : public QuicFramerVisitorInterface {
std::vector<QuicConnectionCloseFrame> connection_close_frames_;
std::vector<QuicWindowUpdateFrame> window_update_frames_;
std::vector<QuicBlockedFrame> blocked_frames_;
- std::vector<QuicPathCloseFrame> path_close_frames_;
std::vector<std::unique_ptr<string>> stream_data_;
DISALLOW_COPY_AND_ASSIGN(SimpleFramerVisitor);
« no previous file with comments | « net/quic/test_tools/quic_test_utils.cc ('k') | net/tools/quic/chlo_extractor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698