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

Unified Diff: net/spdy/spdy_write_queue_unittest.cc

Issue 15701009: [SPDY] Add a SpdyStreamType enum and use it for SpdyStream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CHECK -> DCHECK Created 7 years, 7 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
« net/spdy/spdy_stream.cc ('K') | « net/spdy/spdy_websocket_stream.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_write_queue_unittest.cc
diff --git a/net/spdy/spdy_write_queue_unittest.cc b/net/spdy/spdy_write_queue_unittest.cc
index b327af9e6ca656e7f1671249c8ac388264fae1be..18656191b74e3b9c612cd47cc3aaeedfa98125a9 100644
--- a/net/spdy/spdy_write_queue_unittest.cc
+++ b/net/spdy/spdy_write_queue_unittest.cc
@@ -63,7 +63,8 @@ int ProducerToInt(scoped_ptr<SpdyBufferProducer> producer) {
// be there.
SpdyStream* MakeTestStream(RequestPriority priority) {
return new SpdyStream(
- NULL, std::string(), priority, 0, 0, false, BoundNetLog());
+ SPDY_BIDIRECTIONAL_STREAM, NULL, std::string(), priority,
+ 0, 0, BoundNetLog());
}
// Add some frame producers of different priority. The producers
« net/spdy/spdy_stream.cc ('K') | « net/spdy/spdy_websocket_stream.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698