Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Unified Diff: net/tools/quic/quic_simple_client_session.h

Issue 1015353003: Revert of Add a chromium based simple QUIC client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/quic/quic_simple_client_bin.cc ('k') | net/tools/quic/quic_simple_client_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « net/tools/quic/quic_simple_client_bin.cc ('k') | net/tools/quic/quic_simple_client_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698