| Index: net/quic/quic_connection.h
 | 
| diff --git a/net/quic/quic_connection.h b/net/quic/quic_connection.h
 | 
| index 8afd79d6a5ffa333c43666d63f75ae36dd4c4704..e944aea51951a473b7b1dafc5f6bc21e86a2dbb2 100644
 | 
| --- a/net/quic/quic_connection.h
 | 
| +++ b/net/quic/quic_connection.h
 | 
| @@ -370,8 +370,8 @@ class NET_EXPORT_PRIVATE QuicConnection
 | 
|    bool ShouldGeneratePacket(TransmissionType transmission_type,
 | 
|                              HasRetransmittableData retransmittable,
 | 
|                              IsHandshake handshake) override;
 | 
| -  QuicAckFrame* CreateAckFrame() override;
 | 
| -  QuicStopWaitingFrame* CreateStopWaitingFrame() override;
 | 
| +  void PopulateAckFrame(QuicAckFrame* ack) override;
 | 
| +  void PopulateStopWaitingFrame(QuicStopWaitingFrame* stop_waiting) override;
 | 
|    void OnSerializedPacket(const SerializedPacket& packet) override;
 | 
|  
 | 
|    // QuicSentPacketManager::NetworkChangeVisitor
 | 
| @@ -629,9 +629,6 @@ class NET_EXPORT_PRIVATE QuicConnection
 | 
|  
 | 
|    void ProcessStopWaitingFrame(const QuicStopWaitingFrame& stop_waiting);
 | 
|  
 | 
| -  // Update |stop_waiting| for an outgoing ack.
 | 
| -  void UpdateStopWaiting(QuicStopWaitingFrame* stop_waiting);
 | 
| -
 | 
|    // Queues an ack or sets the ack alarm when an incoming packet arrives that
 | 
|    // should be acked.
 | 
|    void MaybeQueueAck();
 | 
| @@ -670,7 +667,7 @@ class NET_EXPORT_PRIVATE QuicConnection
 | 
|                                  const IPEndPoint& peer_address);
 | 
|  
 | 
|    HasRetransmittableData IsRetransmittable(const QueuedPacket& packet);
 | 
| -  bool IsConnectionClose(QueuedPacket packet);
 | 
| +  bool IsConnectionClose(const QueuedPacket& packet);
 | 
|  
 | 
|    QuicFramer framer_;
 | 
|    QuicConnectionHelperInterface* helper_;  // Not owned.
 | 
| 
 |