OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |