| Index: net/tools/quic/quic_server_session.h
|
| diff --git a/net/tools/quic/quic_server_session.h b/net/tools/quic/quic_server_session.h
|
| index eb0aab6c42787e2a73e478d71e7b53b665de749f..acec14b48e94ad59d35dc2ec02453a5a52218c8b 100644
|
| --- a/net/tools/quic/quic_server_session.h
|
| +++ b/net/tools/quic/quic_server_session.h
|
| @@ -50,14 +50,14 @@ class QuicServerSession : public QuicSession {
|
| QuicServerSessionVisitor* visitor);
|
|
|
| // Override the base class to notify the owner of the connection close.
|
| - virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) override;
|
| - virtual void OnWriteBlocked() override;
|
| + void OnConnectionClosed(QuicErrorCode error, bool from_peer) override;
|
| + void OnWriteBlocked() override;
|
|
|
| // Sends a server config update to the client, containing new bandwidth
|
| // estimate.
|
| - virtual void OnCongestionWindowChange(QuicTime now) override;
|
| + void OnCongestionWindowChange(QuicTime now) override;
|
|
|
| - virtual ~QuicServerSession();
|
| + ~QuicServerSession() override;
|
|
|
| virtual void InitializeSession(const QuicCryptoServerConfig& crypto_config);
|
|
|
| @@ -66,7 +66,7 @@ class QuicServerSession : public QuicSession {
|
| }
|
|
|
| // Override base class to process FEC config received from client.
|
| - virtual void OnConfigNegotiated() override;
|
| + void OnConfigNegotiated() override;
|
|
|
| void set_serving_region(string serving_region) {
|
| serving_region_ = serving_region;
|
| @@ -74,9 +74,9 @@ class QuicServerSession : public QuicSession {
|
|
|
| protected:
|
| // QuicSession methods:
|
| - virtual QuicDataStream* CreateIncomingDataStream(QuicStreamId id) override;
|
| - virtual QuicDataStream* CreateOutgoingDataStream() override;
|
| - virtual QuicCryptoServerStream* GetCryptoStream() override;
|
| + QuicDataStream* CreateIncomingDataStream(QuicStreamId id) override;
|
| + QuicDataStream* CreateOutgoingDataStream() override;
|
| + QuicCryptoServerStream* GetCryptoStream() override;
|
|
|
| // If we should create an incoming stream, returns true. Otherwise
|
| // does error handling, including communicating the error to the client and
|
|
|