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

Unified Diff: net/quic/quic_packet_generator.cc

Issue 1570443010: relnote: Change the QuicBlockedFrame in QuicFrame from a pointer to in-place. No functional change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@04_CL_111628540
Patch Set: Created 4 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
« no previous file with comments | « net/quic/quic_framer_test.cc ('k') | net/quic/quic_protocol.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_packet_generator.cc
diff --git a/net/quic/quic_packet_generator.cc b/net/quic/quic_packet_generator.cc
index 50d6af11eb01cf73abce4e7ebcbb840811346167..77da10b7e56c6cc3f4349f9f5c984dc6495cc14e 100644
--- a/net/quic/quic_packet_generator.cc
+++ b/net/quic/quic_packet_generator.cc
@@ -38,6 +38,7 @@ QuicPacketGenerator::~QuicPacketGenerator() {
case PADDING_FRAME:
case MTU_DISCOVERY_FRAME:
case PING_FRAME:
+ case BLOCKED_FRAME:
break;
case STREAM_FRAME:
delete frame.stream_frame;
@@ -57,9 +58,6 @@ QuicPacketGenerator::~QuicPacketGenerator() {
case WINDOW_UPDATE_FRAME:
delete frame.window_update_frame;
break;
- case BLOCKED_FRAME:
- delete frame.blocked_frame;
- break;
case STOP_WAITING_FRAME:
delete frame.stop_waiting_frame;
break;
« no previous file with comments | « net/quic/quic_framer_test.cc ('k') | net/quic/quic_protocol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698