| Index: net/quic/quic_connection.h
|
| diff --git a/net/quic/quic_connection.h b/net/quic/quic_connection.h
|
| index 5ced84f1d524283ae8a1f0dfef930b7385109254..7d42cb78994a4d783b3fd619bdc4732f2a2829b0 100644
|
| --- a/net/quic/quic_connection.h
|
| +++ b/net/quic/quic_connection.h
|
| @@ -204,9 +204,9 @@ class NET_EXPORT_PRIVATE QuicConnection
|
| BUNDLE_PENDING_ACK = 2,
|
| };
|
|
|
| - // Constructs a new QuicConnection for the specified |guid| and |address|.
|
| + // Constructs a new QuicConnection for |connection_id| and |address|.
|
| // |helper| and |writer| must outlive this connection.
|
| - QuicConnection(QuicGuid guid,
|
| + QuicConnection(QuicConnectionId connection_id,
|
| IPEndPoint address,
|
| QuicConnectionHelperInterface* helper,
|
| QuicPacketWriter* writer,
|
| @@ -341,7 +341,7 @@ class NET_EXPORT_PRIVATE QuicConnection
|
| }
|
| const IPEndPoint& self_address() const { return self_address_; }
|
| const IPEndPoint& peer_address() const { return peer_address_; }
|
| - QuicGuid guid() const { return guid_; }
|
| + QuicConnectionId connection_id() const { return connection_id_; }
|
| const QuicClock* clock() const { return clock_; }
|
| QuicRandom* random_generator() const { return random_generator_; }
|
|
|
| @@ -602,7 +602,7 @@ class NET_EXPORT_PRIVATE QuicConnection
|
| const QuicClock* clock_;
|
| QuicRandom* random_generator_;
|
|
|
| - const QuicGuid guid_;
|
| + const QuicConnectionId connection_id_;
|
| // Address on the last successfully processed packet received from the
|
| // client.
|
| IPEndPoint self_address_;
|
|
|