Index: net/quic/quic_spdy_stream.h |
diff --git a/net/quic/quic_spdy_stream.h b/net/quic/quic_spdy_stream.h |
index 60a6d67b4d00a693cb6cf54af9447d733f7844a6..e55d6aa2c8050da2157271f206e5b843ca0c4afb 100644 |
--- a/net/quic/quic_spdy_stream.h |
+++ b/net/quic/quic_spdy_stream.h |
@@ -64,7 +64,7 @@ class NET_EXPORT_PRIVATE QuicSpdyStream : public ReliableQuicStream { |
// This is the same as priority() and is being deprecated |
// TODO(alyssar) remove after Priority refactor. |
- QuicPriority Priority() const override; |
+ SpdyPriority Priority() const override; |
// Called by the session when decompressed headers data is received |
// for this stream. |
@@ -74,7 +74,7 @@ class NET_EXPORT_PRIVATE QuicSpdyStream : public ReliableQuicStream { |
// Called by the session when headers with a priority have been received |
// for this stream. This method will only be called for server streams. |
- virtual void OnStreamHeadersPriority(QuicPriority priority); |
+ virtual void OnStreamHeadersPriority(SpdyPriority priority); |
// Called by the session when decompressed headers have been completely |
// delilvered to this stream. If |fin| is true, then this stream |
@@ -113,12 +113,12 @@ class NET_EXPORT_PRIVATE QuicSpdyStream : public ReliableQuicStream { |
return decompressed_headers_; |
} |
- QuicPriority priority() const { return priority_; } |
+ SpdyPriority priority() const { return priority_; } |
protected: |
// Sets priority_ to priority. This should only be called before bytes are |
// written to the server. |
- void set_priority(QuicPriority priority); |
+ void set_priority(SpdyPriority priority); |
bool FinishedReadingHeaders() const; |
@@ -133,7 +133,7 @@ class NET_EXPORT_PRIVATE QuicSpdyStream : public ReliableQuicStream { |
// True if the headers have been completely decompressed. |
bool headers_decompressed_; |
// The priority of the stream, once parsed. |
- QuicPriority priority_; |
+ SpdyPriority priority_; |
// Contains a copy of the decompressed headers until they are consumed |
// via ProcessData or Readv. |
std::string decompressed_headers_; |