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

Unified Diff: net/spdy/spdy_framer.h

Issue 723343002: Update from https://crrev.com/304121 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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/spdy/mock_spdy_framer_visitor.h ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer.h
diff --git a/net/spdy/spdy_framer.h b/net/spdy/spdy_framer.h
index 29cab72e7c7b38b894f23b5ff2b8665918d06dd5..dcb291157fd0a5237e5d27879a5da13718e88d13 100644
--- a/net/spdy/spdy_framer.h
+++ b/net/spdy/spdy_framer.h
@@ -37,8 +37,6 @@ class SpdyNetworkTransactionTest;
class SpdyProxyClientSocketTest;
class SpdySessionTest;
class SpdyStreamTest;
-class SpdyWebSocketStreamTest;
-class WebSocketJobTest;
class SpdyFramer;
class SpdyFrameBuilder;
@@ -237,7 +235,11 @@ class NET_EXPORT_PRIVATE SpdyFramerVisitorInterface {
// Called when a HEADERS frame is received.
// Note that header block data is not included. See
// OnControlFrameHeaderData().
- virtual void OnHeaders(SpdyStreamId stream_id, bool fin, bool end) = 0;
+ virtual void OnHeaders(SpdyStreamId stream_id,
+ bool has_priority,
+ SpdyPriority priority,
+ bool fin,
+ bool end) = 0;
// Called when a WINDOW_UPDATE frame has been parsed.
virtual void OnWindowUpdate(SpdyStreamId stream_id,
@@ -612,16 +614,14 @@ class NET_EXPORT_PRIVATE SpdyFramer {
TooLargeHeadersFrameUsesContinuation);
FRIEND_TEST_ALL_PREFIXES(SpdyFramerTest,
TooLargePushPromiseFrameUsesContinuation);
- friend class net::HttpNetworkLayer; // This is temporary for the server.
- friend class net::HttpNetworkTransactionTest;
- friend class net::HttpProxyClientSocketPoolTest;
- friend class net::SpdyHttpStreamTest;
- friend class net::SpdyNetworkTransactionTest;
- friend class net::SpdyProxyClientSocketTest;
- friend class net::SpdySessionTest;
- friend class net::SpdyStreamTest;
- friend class net::SpdyWebSocketStreamTest;
- friend class net::WebSocketJobTest;
+ friend class HttpNetworkLayer; // This is temporary for the server.
+ friend class HttpNetworkTransactionTest;
+ friend class HttpProxyClientSocketPoolTest;
+ friend class SpdyHttpStreamTest;
+ friend class SpdyNetworkTransactionTest;
+ friend class SpdyProxyClientSocketTest;
+ friend class SpdySessionTest;
+ friend class SpdyStreamTest;
friend class test::TestSpdyVisitor;
private:
« no previous file with comments | « net/spdy/mock_spdy_framer_visitor.h ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698