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

Unified Diff: net/quic/quic_spdy_session.h

Issue 1470713003: Landing Recent QUIC changes until and including Mon Nov 16 14:15:48 2015 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding NET_EXPORT_PRIVATE to DelegateInterface. Created 5 years, 1 month 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
Index: net/quic/quic_spdy_session.h
diff --git a/net/quic/quic_spdy_session.h b/net/quic/quic_spdy_session.h
index 6f7b4a01e52b762321ba2b7fa4e049b4b90b8dfd..3b5c187e95444fe449ea1d396969d6dd002ef76f 100644
--- a/net/quic/quic_spdy_session.h
+++ b/net/quic/quic_spdy_session.h
@@ -31,7 +31,7 @@ class NET_EXPORT_PRIVATE QuicSpdySession : public QuicSession {
// received for this stream. This method will only be called for server
// streams.
virtual void OnStreamHeadersPriority(QuicStreamId stream_id,
- QuicPriority priority);
+ SpdyPriority priority);
// Called by |headers_stream_| when headers have been completely received
// for a stream. |fin| will be true if the fin flag was set in the headers
// frame.
@@ -46,7 +46,7 @@ class NET_EXPORT_PRIVATE QuicSpdySession : public QuicSession {
size_t WriteHeaders(QuicStreamId id,
const SpdyHeaderBlock& headers,
bool fin,
- QuicPriority priority,
+ SpdyPriority priority,
QuicAckListenerInterface* ack_notifier_delegate);
QuicHeadersStream* headers_stream() { return headers_stream_.get(); }

Powered by Google App Engine
This is Rietveld 408576698