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

Side by Side Diff: net/spdy/mock_spdy_framer_visitor.h

Issue 353443005: SpdyFramer hooks for parsing and handling PRIORITY frames. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Additional override => OVERRIDE. Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | net/spdy/spdy_framer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_SPDY_MOCK_SPDY_FRAMER_VISITOR_H_ 5 #ifndef NET_SPDY_MOCK_SPDY_FRAMER_VISITOR_H_
6 #define NET_SPDY_MOCK_SPDY_FRAMER_VISITOR_H_ 6 #define NET_SPDY_MOCK_SPDY_FRAMER_VISITOR_H_
7 7
8 #include "base/strings/string_piece.h" 8 #include "base/strings/string_piece.h"
9 #include "net/spdy/spdy_framer.h" 9 #include "net/spdy/spdy_framer.h"
10 #include "testing/gmock/include/gmock/gmock.h" 10 #include "testing/gmock/include/gmock/gmock.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 MOCK_METHOD3(OnPushPromise, void(SpdyStreamId stream_id, 49 MOCK_METHOD3(OnPushPromise, void(SpdyStreamId stream_id,
50 SpdyStreamId promised_stream_id, 50 SpdyStreamId promised_stream_id,
51 bool end)); 51 bool end));
52 MOCK_METHOD2(OnContinuation, void(SpdyStreamId stream_id, bool end)); 52 MOCK_METHOD2(OnContinuation, void(SpdyStreamId stream_id, bool end));
53 MOCK_METHOD6(OnAltSvc, void(SpdyStreamId stream_id, 53 MOCK_METHOD6(OnAltSvc, void(SpdyStreamId stream_id,
54 uint32 max_age, 54 uint32 max_age,
55 uint16 port, 55 uint16 port,
56 base::StringPiece protocol_id, 56 base::StringPiece protocol_id,
57 base::StringPiece host, 57 base::StringPiece host,
58 base::StringPiece origin)); 58 base::StringPiece origin));
59 MOCK_METHOD4(OnPriority,
60 void(SpdyStreamId stream_id,
61 SpdyStreamId parent_stream_id,
62 uint8 weight,
63 bool exclusive));
59 }; 64 };
60 65
61 } // namespace test 66 } // namespace test
62 67
63 } // namespace net 68 } // namespace net
64 69
65 #endif // NET_SPDY_MOCK_SPDY_FRAMER_VISITOR_H_ 70 #endif // NET_SPDY_MOCK_SPDY_FRAMER_VISITOR_H_
OLDNEW
« no previous file with comments | « no previous file | net/spdy/spdy_framer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698