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

Unified Diff: net/quic/core/quic_ack_listener_interface.cc

Issue 2589983002: Create a QUIC wrapper around scoped_refptr. (Closed)
Patch Set: rm = nullptr Created 4 years 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/core/quic_ack_listener_interface.h ('k') | net/quic/core/quic_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_ack_listener_interface.cc
diff --git a/net/quic/core/quic_ack_listener_interface.cc b/net/quic/core/quic_ack_listener_interface.cc
index e599d594e9576d95c2c718773153151a5e73e424..dc8d4065f370cd97d76b4bd0685c49e032d8819d 100644
--- a/net/quic/core/quic_ack_listener_interface.cc
+++ b/net/quic/core/quic_ack_listener_interface.cc
@@ -6,8 +6,10 @@
namespace net {
+QuicAckListenerInterface::~QuicAckListenerInterface() {}
+
AckListenerWrapper::AckListenerWrapper(
- scoped_refptr<QuicAckListenerInterface> listener,
+ QuicReferenceCountedPointer<QuicAckListenerInterface> listener,
QuicPacketLength data_length)
: ack_listener(std::move(listener)), length(data_length) {}
« no previous file with comments | « net/quic/core/quic_ack_listener_interface.h ('k') | net/quic/core/quic_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698