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

Unified Diff: net/tools/quic/test_tools/quic_test_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_spdy_server_stream.cc ('k') | net/tools/quic/test_tools/quic_test_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/test_tools/quic_test_client.h
diff --git a/net/tools/quic/test_tools/quic_test_client.h b/net/tools/quic/test_tools/quic_test_client.h
index 79a8b441142a2e65b17e1619c906542c48c2d726..ac3c05311dc6cc72f14b7310064616c474953637 100644
--- a/net/tools/quic/test_tools/quic_test_client.h
+++ b/net/tools/quic/test_tools/quic_test_client.h
@@ -65,8 +65,7 @@ class MockableQuicClient : public QuicClient {
};
// A toy QUIC client used for testing, mostly following the SimpleClient APIs.
-class QuicTestClient : public SimpleClient,
- public QuicDataStream::Visitor {
+class QuicTestClient : public SimpleClient, public QuicSpdyStream::Visitor {
public:
QuicTestClient(IPEndPoint server_address,
const std::string& server_hostname,
@@ -139,8 +138,8 @@ class QuicTestClient : public SimpleClient,
const IPEndPoint& address() const override;
size_t requests_sent() const override;
- // From QuicDataStream::Visitor
- void OnClose(QuicDataStream* stream) override;
+ // From QuicSpdyStream::Visitor
+ void OnClose(QuicSpdyStream* stream) override;
// Configures client_ to take ownership of and use the writer.
// Must be called before initial connect.
« no previous file with comments | « net/tools/quic/quic_spdy_server_stream.cc ('k') | net/tools/quic/test_tools/quic_test_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698