Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / net / tools / quic / test_tools / quic_client_peer.h
blob32f96a78173695397bab898f677119f2bb0e8be5
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
3 // found in the LICENSE file.
5 #ifndef NET_TOOLS_QUIC_TEST_TOOLS_QUIC_CLIENT_PEER_H_
6 #define NET_TOOLS_QUIC_TEST_TOOLS_QUIC_CLIENT_PEER_H_
8 #include "base/basictypes.h"
10 namespace net {
12 class QuicCryptoClientConfig;
13 class QuicPacketWriter;
15 namespace tools {
17 class QuicClient;
19 namespace test {
21 class QuicClientPeer {
22 public:
23 static bool CreateUDPSocket(QuicClient* client);
24 static void SetClientPort(QuicClient* client, int port);
26 private:
27 DISALLOW_COPY_AND_ASSIGN(QuicClientPeer);
30 } // namespace test
31 } // namespace tools
32 } // namespace net
34 #endif // NET_TOOLS_QUIC_TEST_TOOLS_QUIC_CLIENT_PEER_H_