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

Unified Diff: net/quic/quic_spdy_stream.h

Issue 1468773002: Changing from QuicPriority to SpdyPriority. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@107610692
Patch Set: 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
« no previous file with comments | « net/quic/quic_spdy_session.cc ('k') | net/quic/quic_spdy_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « net/quic/quic_spdy_session.cc ('k') | net/quic/quic_spdy_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698