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

Unified Diff: net/quic/quic_default_packet_writer.cc

Issue 506523002: net : Declaring the weak_ptr_factory in proper order. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years, 4 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_default_packet_writer.h ('k') | net/quic/quic_per_connection_packet_writer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_default_packet_writer.cc
diff --git a/net/quic/quic_default_packet_writer.cc b/net/quic/quic_default_packet_writer.cc
index 6453846635ebd3408fc10c0fe7ea0b10f4126c66..d851dfb74bcbcb7e5248352b17a0ee9b85901e3b 100644
--- a/net/quic/quic_default_packet_writer.cc
+++ b/net/quic/quic_default_packet_writer.cc
@@ -16,9 +16,9 @@ QuicDefaultPacketWriter::QuicDefaultPacketWriter() : weak_factory_(this) {
}
QuicDefaultPacketWriter::QuicDefaultPacketWriter(DatagramClientSocket* socket)
- : weak_factory_(this),
- socket_(socket),
- write_blocked_(false) {
+ : socket_(socket),
+ write_blocked_(false),
+ weak_factory_(this) {
}
QuicDefaultPacketWriter::~QuicDefaultPacketWriter() {}
« no previous file with comments | « net/quic/quic_default_packet_writer.h ('k') | net/quic/quic_per_connection_packet_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698