| Index: net/quic/core/quic_connection.h
|
| diff --git a/net/quic/core/quic_connection.h b/net/quic/core/quic_connection.h
|
| index d04d970e90278d34b268da99ad191f113665214e..e5bf4ca91689f3a56690f442ff0659f95234d9eb 100644
|
| --- a/net/quic/core/quic_connection.h
|
| +++ b/net/quic/core/quic_connection.h
|
| @@ -229,9 +229,6 @@ class QUIC_EXPORT_PRIVATE QuicConnectionDebugVisitor
|
| // Called when a BlockedFrame has been parsed.
|
| virtual void OnBlockedFrame(const QuicBlockedFrame& frame) {}
|
|
|
| - // Called when a PathCloseFrame has been parsed.
|
| - virtual void OnPathCloseFrame(const QuicPathCloseFrame& frame) {}
|
| -
|
| // Called when a public reset packet has been received.
|
| virtual void OnPublicResetPacket(const QuicPublicResetPacket& packet) {}
|
|
|
| @@ -445,7 +442,6 @@ class QUIC_EXPORT_PRIVATE QuicConnection
|
| bool OnGoAwayFrame(const QuicGoAwayFrame& frame) override;
|
| bool OnWindowUpdateFrame(const QuicWindowUpdateFrame& frame) override;
|
| bool OnBlockedFrame(const QuicBlockedFrame& frame) override;
|
| - bool OnPathCloseFrame(const QuicPathCloseFrame& frame) override;
|
| void OnPacketComplete() override;
|
|
|
| // QuicConnectionCloseDelegateInterface
|
| @@ -1079,9 +1075,6 @@ class QUIC_EXPORT_PRIVATE QuicConnection
|
| // Whether a GoAway has been received.
|
| bool goaway_received_;
|
|
|
| - // If true, multipath is enabled for this connection.
|
| - bool multipath_enabled_;
|
| -
|
| // Indicates whether a write error is encountered currently. This is used to
|
| // avoid infinite write errors.
|
| bool write_error_occured_;
|
|
|