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

Side by Side Diff: net/quic/test_tools/quic_crypto_server_config_peer.h

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 years, 4 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_CRYPTO_SERVER_CONFIG_PEER_H_ 5 #ifndef NET_QUIC_TEST_TOOLS_QUIC_CRYPTO_SERVER_CONFIG_PEER_H_
6 #define NET_QUIC_TEST_TOOLS_QUIC_CRYPTO_SERVER_CONFIG_PEER_H_ 6 #define NET_QUIC_TEST_TOOLS_QUIC_CRYPTO_SERVER_CONFIG_PEER_H_
7 7
8 #include "net/quic/crypto/quic_crypto_server_config.h" 8 #include "net/quic/core/crypto/quic_crypto_server_config.h"
9 9
10 namespace net { 10 namespace net {
11 namespace test { 11 namespace test {
12 12
13 // Peer for accessing otherwise private members of a QuicCryptoServerConfig. 13 // Peer for accessing otherwise private members of a QuicCryptoServerConfig.
14 class QuicCryptoServerConfigPeer { 14 class QuicCryptoServerConfigPeer {
15 public: 15 public:
16 explicit QuicCryptoServerConfigPeer( 16 explicit QuicCryptoServerConfigPeer(
17 const QuicCryptoServerConfig* server_config) 17 const QuicCryptoServerConfig* server_config)
18 : server_config_(server_config) {} 18 : server_config_(server_config) {}
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 uint32_t server_nonce_strike_register_window_secs(); 97 uint32_t server_nonce_strike_register_window_secs();
98 98
99 private: 99 private:
100 const QuicCryptoServerConfig* server_config_; 100 const QuicCryptoServerConfig* server_config_;
101 }; 101 };
102 102
103 } // namespace test 103 } // namespace test
104 } // namespace net 104 } // namespace net
105 105
106 #endif // NET_QUIC_TEST_TOOLS_QUIC_CRYPTO_SERVER_CONFIG_PEER_H_ 106 #endif // NET_QUIC_TEST_TOOLS_QUIC_CRYPTO_SERVER_CONFIG_PEER_H_
OLDNEW
« no previous file with comments | « net/quic/test_tools/quic_connection_peer.cc ('k') | net/quic/test_tools/quic_flow_controller_peer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698