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

Unified Diff: net/quic/quic_spdy_session.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/quic/quic_session_test.cc ('k') | net/quic/quic_spdy_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_spdy_session.h
diff --git a/net/quic/quic_spdy_session.h b/net/quic/quic_spdy_session.h
index bcc516236e599330c1e6443696bb4fa57854440c..77ebe2e48a6a71bf82946b5b9c94a3c0f3f51443 100644
--- a/net/quic/quic_spdy_session.h
+++ b/net/quic/quic_spdy_session.h
@@ -5,11 +5,9 @@
#ifndef NET_QUIC_QUIC_SPDY_SESSION_H_
#define NET_QUIC_QUIC_SPDY_SESSION_H_
-#include "base/basictypes.h"
-#include "base/memory/scoped_ptr.h"
-#include "net/quic/quic_data_stream.h"
#include "net/quic/quic_headers_stream.h"
#include "net/quic/quic_session.h"
+#include "net/quic/quic_spdy_stream.h"
namespace net {
@@ -55,12 +53,12 @@ class NET_EXPORT_PRIVATE QuicSpdySession : public QuicSession {
protected:
// Override CreateIncomingDynamicStream() and CreateOutgoingDynamicStream()
- // with QuicDataStream return type to make sure that all data streams are
- // QuicDataStreams.
- QuicDataStream* CreateIncomingDynamicStream(QuicStreamId id) override = 0;
- QuicDataStream* CreateOutgoingDynamicStream() override = 0;
+ // with QuicSpdyStream return type to make sure that all data streams are
+ // QuicSpdyStreams.
+ QuicSpdyStream* CreateIncomingDynamicStream(QuicStreamId id) override = 0;
+ QuicSpdyStream* CreateOutgoingDynamicStream() override = 0;
- QuicDataStream* GetSpdyDataStream(const QuicStreamId stream_id);
+ QuicSpdyStream* GetSpdyDataStream(const QuicStreamId stream_id);
private:
friend class test::QuicSpdySessionPeer;
« no previous file with comments | « net/quic/quic_session_test.cc ('k') | net/quic/quic_spdy_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698