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

Unified Diff: net/quic/quic_packet_generator.h

Issue 312553003: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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_packet_creator_test.cc ('k') | net/quic/quic_packet_generator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_packet_generator.h
diff --git a/net/quic/quic_packet_generator.h b/net/quic/quic_packet_generator.h
index 12caf34e146b7cf52667d0326500b214a9c68a43..d9de488d929f1809f4f6109edc95c1031edf7f6a 100644
--- a/net/quic/quic_packet_generator.h
+++ b/net/quic/quic_packet_generator.h
@@ -78,16 +78,16 @@ class NET_EXPORT_PRIVATE QuicPacketGenerator {
// Interface which gets callbacks from the QuicPacketGenerator at interesting
// points. Implementations must not mutate the state of the generator
// as a result of these callbacks.
- class NET_EXPORT_PRIVATE DebugDelegateInterface {
+ class NET_EXPORT_PRIVATE DebugDelegate {
public:
- virtual ~DebugDelegateInterface() {}
+ virtual ~DebugDelegate() {}
// Called when a frame has been added to the current packet.
virtual void OnFrameAddedToPacket(const QuicFrame& frame) {}
};
QuicPacketGenerator(DelegateInterface* delegate,
- DebugDelegateInterface* debug_delegate,
+ DebugDelegate* debug_delegate,
QuicPacketCreator* creator);
virtual ~QuicPacketGenerator();
@@ -131,7 +131,7 @@ class NET_EXPORT_PRIVATE QuicPacketGenerator {
bool HasQueuedFrames() const;
- void set_debug_delegate(DebugDelegateInterface* debug_delegate) {
+ void set_debug_delegate(DebugDelegate* debug_delegate) {
debug_delegate_ = debug_delegate;
}
@@ -152,7 +152,7 @@ class NET_EXPORT_PRIVATE QuicPacketGenerator {
void SerializeAndSendPacket();
DelegateInterface* delegate_;
- DebugDelegateInterface* debug_delegate_;
+ DebugDelegate* debug_delegate_;
QuicPacketCreator* packet_creator_;
QuicFrames queued_control_frames_;
« no previous file with comments | « net/quic/quic_packet_creator_test.cc ('k') | net/quic/quic_packet_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698