| Index: net/quic/test_tools/quic_test_utils.h
|
| diff --git a/net/quic/test_tools/quic_test_utils.h b/net/quic/test_tools/quic_test_utils.h
|
| index fa29984fa37dafae800099e04479d64936f01e6b..0afc4365d54be8251e11cf695c8ab748c751060b 100644
|
| --- a/net/quic/test_tools/quic_test_utils.h
|
| +++ b/net/quic/test_tools/quic_test_utils.h
|
| @@ -27,7 +27,7 @@ namespace net {
|
|
|
| namespace test {
|
|
|
| -static const QuicGuid kTestGuid = 42;
|
| +static const QuicConnectionId kTestConnectionId = 42;
|
| static const int kTestPort = 123;
|
|
|
| // Returns the test peer IP address.
|
| @@ -273,16 +273,16 @@ class MockHelper : public QuicConnectionHelperInterface {
|
|
|
| class MockConnection : public QuicConnection {
|
| public:
|
| - // Uses a MockHelper, GUID of 42, and 127.0.0.1:123.
|
| + // Uses a MockHelper, ConnectionId of 42, and 127.0.0.1:123.
|
| explicit MockConnection(bool is_server);
|
|
|
| - // Uses a MockHelper, GUID of 42.
|
| + // Uses a MockHelper, ConnectionId of 42.
|
| MockConnection(IPEndPoint address, bool is_server);
|
|
|
| // Uses a MockHelper, and 127.0.0.1:123
|
| - MockConnection(QuicGuid guid, bool is_server);
|
| + MockConnection(QuicConnectionId connection_id, bool is_server);
|
|
|
| - // Uses a Mock helper, GUID of 42, and 127.0.0.1:123.
|
| + // Uses a Mock helper, ConnectionId of 42, and 127.0.0.1:123.
|
| MockConnection(bool is_server, const QuicVersionVector& supported_versions);
|
|
|
| virtual ~MockConnection();
|
|
|