| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_QUIC_TEST_TOOLS_QUIC_CHROMIUM_CLIENT_SESSION_PEER_H_ | 5 #ifndef NET_QUIC_TEST_TOOLS_QUIC_CHROMIUM_CLIENT_SESSION_PEER_H_ |
| 6 #define NET_QUIC_TEST_TOOLS_QUIC_CHROMIUM_CLIENT_SESSION_PEER_H_ | 6 #define NET_QUIC_TEST_TOOLS_QUIC_CHROMIUM_CLIENT_SESSION_PEER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "net/quic/core/quic_protocol.h" | 13 #include "net/quic/core/quic_packets.h" |
| 14 | 14 |
| 15 namespace net { | 15 namespace net { |
| 16 | 16 |
| 17 class QuicChromiumClientSession; | 17 class QuicChromiumClientSession; |
| 18 | 18 |
| 19 namespace test { | 19 namespace test { |
| 20 | 20 |
| 21 class QuicChromiumClientSessionPeer { | 21 class QuicChromiumClientSessionPeer { |
| 22 public: | 22 public: |
| 23 static void SetMaxOpenStreams(QuicChromiumClientSession* session, | 23 static void SetMaxOpenStreams(QuicChromiumClientSession* session, |
| (...skipping 12 matching lines...) Expand all Loading... |
| 36 QuicChromiumClientSession* session); | 36 QuicChromiumClientSession* session); |
| 37 | 37 |
| 38 private: | 38 private: |
| 39 DISALLOW_COPY_AND_ASSIGN(QuicChromiumClientSessionPeer); | 39 DISALLOW_COPY_AND_ASSIGN(QuicChromiumClientSessionPeer); |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 } // namespace test | 42 } // namespace test |
| 43 } // namespace net | 43 } // namespace net |
| 44 | 44 |
| 45 #endif // NET_QUIC_TEST_TOOLS_QUIC_CHROMIUM_CLIENT_SESSION_PEER_H_ | 45 #endif // NET_QUIC_TEST_TOOLS_QUIC_CHROMIUM_CLIENT_SESSION_PEER_H_ |
| OLD | NEW |