| Index: net/tools/quic/quic_simple_client_session.h
|
| diff --git a/net/tools/quic/quic_simple_client_session.h b/net/tools/quic/quic_simple_client_session.h
|
| index 9bf19422d939f26d5973ece8df3f115e6b5bfc07..3438a2334fc58bf53bda76b220bea9800ac9991f 100644
|
| --- a/net/tools/quic/quic_simple_client_session.h
|
| +++ b/net/tools/quic/quic_simple_client_session.h
|
| @@ -4,8 +4,8 @@
|
| //
|
| // A client specific QuicSession subclass.
|
|
|
| -#ifndef NET_TOOLS_QUIC_QUIC_SIMPLE_CLIENT_SESSION_H_
|
| -#define NET_TOOLS_QUIC_QUIC_SIMPLE_CLIENT_SESSION_H_
|
| +#ifndef NET_TOOLS_QUIC_QUIC_CLIENT_SESSION_H_
|
| +#define NET_TOOLS_QUIC_QUIC_CLIENT_SESSION_H_
|
|
|
| #include <string>
|
|
|
| @@ -13,7 +13,7 @@
|
| #include "net/quic/quic_client_session_base.h"
|
| #include "net/quic/quic_crypto_client_stream.h"
|
| #include "net/quic/quic_protocol.h"
|
| -#include "net/tools/quic/quic_simple_client_stream.h"
|
| +#include "net/tools/quic/quic_spdy_client_stream.h"
|
|
|
| namespace net {
|
|
|
| @@ -23,19 +23,19 @@
|
|
|
| namespace tools {
|
|
|
| -class QuicSimpleClientSession : public QuicClientSessionBase {
|
| +class QuicClientSession : public QuicClientSessionBase {
|
| public:
|
| - QuicSimpleClientSession(const QuicConfig& config, QuicConnection* connection);
|
| - ~QuicSimpleClientSession() override;
|
| + QuicClientSession(const QuicConfig& config, QuicConnection* connection);
|
| + ~QuicClientSession() override;
|
|
|
| void InitializeSession(const QuicServerId& server_id,
|
| QuicCryptoClientConfig* config);
|
|
|
| // QuicSession methods:
|
| - QuicSimpleClientStream* CreateOutgoingDataStream() override;
|
| + QuicSpdyClientStream* CreateOutgoingDataStream() override;
|
| QuicCryptoClientStream* GetCryptoStream() override;
|
|
|
| - // QuicSimpleClientSessionBase methods:
|
| + // QuicClientSessionBase methods:
|
| void OnProofValid(const QuicCryptoClientConfig::CachedState& cached) override;
|
| void OnProofVerifyDetailsAvailable(
|
| const ProofVerifyDetails& verify_details) override;
|
| @@ -63,10 +63,10 @@
|
| // the creation of streams regardless of the high chance they will fail.
|
| bool respect_goaway_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(QuicSimpleClientSession);
|
| + DISALLOW_COPY_AND_ASSIGN(QuicClientSession);
|
| };
|
|
|
| } // namespace tools
|
| } // namespace net
|
|
|
| -#endif // NET_TOOLS_QUIC_QUIC_SIMPLE_CLIENT_SESSION_H_
|
| +#endif // NET_TOOLS_QUIC_QUIC_CLIENT_SESSION_H_
|
|
|