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

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

Issue 1423463003: Rename QuicDataStream to QuicSpdyStream. No behavior change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@105435080
Patch Set: Created 5 years, 2 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_server_session_test.cc ('k') | net/tools/quic/quic_simple_client.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.h
diff --git a/net/tools/quic/quic_simple_client.h b/net/tools/quic/quic_simple_client.h
index 88a0032189c82db464bc306921a1acf2442de9b9..c473b8ec0245e7afed15f2dc253665a455d806e3 100644
--- a/net/tools/quic/quic_simple_client.h
+++ b/net/tools/quic/quic_simple_client.h
@@ -18,8 +18,8 @@
#include "net/http/http_response_headers.h"
#include "net/log/net_log.h"
#include "net/quic/quic_config.h"
-#include "net/quic/quic_data_stream.h"
#include "net/quic/quic_packet_reader.h"
+#include "net/quic/quic_spdy_stream.h"
#include "net/tools/quic/quic_client_base.h"
namespace net {
@@ -35,7 +35,7 @@ class QuicClientPeer;
} // namespace test
class QuicSimpleClient : public QuicClientBase,
- public QuicDataStream::Visitor,
+ public QuicSpdyStream::Visitor,
public QuicPacketReader::Visitor {
public:
class ResponseListener {
@@ -130,8 +130,8 @@ class QuicSimpleClient : public QuicClientBase,
IPEndPoint local_address,
IPEndPoint peer_address) override;
- // QuicDataStream::Visitor
- void OnClose(QuicDataStream* stream) override;
+ // QuicSpdyStream::Visitor
+ void OnClose(QuicSpdyStream* stream) override;
// If the crypto handshake has not yet been confirmed, adds the data to the
// queue of data to resend if the client receives a stateless reject.
« no previous file with comments | « net/tools/quic/quic_server_session_test.cc ('k') | net/tools/quic/quic_simple_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698