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

Side by Side Diff: net/quic/core/quic_crypto_server_stream_test.cc

Issue 2820423002: Move quic_flags.h from net/quic/core to net/quic/platform and split into api and impl. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « net/quic/core/quic_crypto_server_stream.cc ('k') | net/quic/core/quic_crypto_stream.cc » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "net/quic/core/quic_crypto_server_stream.h" 5 #include "net/quic/core/quic_crypto_server_stream.h"
6 6
7 #include <map> 7 #include <map>
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
11 #include "net/quic/core/crypto/aes_128_gcm_12_encrypter.h" 11 #include "net/quic/core/crypto/aes_128_gcm_12_encrypter.h"
12 #include "net/quic/core/crypto/crypto_framer.h" 12 #include "net/quic/core/crypto/crypto_framer.h"
13 #include "net/quic/core/crypto/crypto_handshake.h" 13 #include "net/quic/core/crypto/crypto_handshake.h"
14 #include "net/quic/core/crypto/crypto_protocol.h" 14 #include "net/quic/core/crypto/crypto_protocol.h"
15 #include "net/quic/core/crypto/crypto_utils.h" 15 #include "net/quic/core/crypto/crypto_utils.h"
16 #include "net/quic/core/crypto/quic_crypto_server_config.h" 16 #include "net/quic/core/crypto/quic_crypto_server_config.h"
17 #include "net/quic/core/crypto/quic_decrypter.h" 17 #include "net/quic/core/crypto/quic_decrypter.h"
18 #include "net/quic/core/crypto/quic_encrypter.h" 18 #include "net/quic/core/crypto/quic_encrypter.h"
19 #include "net/quic/core/crypto/quic_random.h" 19 #include "net/quic/core/crypto/quic_random.h"
20 #include "net/quic/core/quic_crypto_client_stream.h" 20 #include "net/quic/core/quic_crypto_client_stream.h"
21 #include "net/quic/core/quic_flags.h"
22 #include "net/quic/core/quic_packets.h" 21 #include "net/quic/core/quic_packets.h"
23 #include "net/quic/core/quic_session.h" 22 #include "net/quic/core/quic_session.h"
23 #include "net/quic/platform/api/quic_flags.h"
24 #include "net/quic/platform/api/quic_logging.h" 24 #include "net/quic/platform/api/quic_logging.h"
25 #include "net/quic/platform/api/quic_ptr_util.h" 25 #include "net/quic/platform/api/quic_ptr_util.h"
26 #include "net/quic/platform/api/quic_socket_address.h" 26 #include "net/quic/platform/api/quic_socket_address.h"
27 #include "net/quic/test_tools/crypto_test_utils.h" 27 #include "net/quic/test_tools/crypto_test_utils.h"
28 #include "net/quic/test_tools/failing_proof_source.h" 28 #include "net/quic/test_tools/failing_proof_source.h"
29 #include "net/quic/test_tools/fake_proof_source.h" 29 #include "net/quic/test_tools/fake_proof_source.h"
30 #include "net/quic/test_tools/quic_crypto_server_config_peer.h" 30 #include "net/quic/test_tools/quic_crypto_server_config_peer.h"
31 #include "net/quic/test_tools/quic_test_utils.h" 31 #include "net/quic/test_tools/quic_test_utils.h"
32 #include "testing/gmock/include/gmock/gmock.h" 32 #include "testing/gmock/include/gmock/gmock.h"
33 #include "testing/gtest/include/gtest/gtest.h" 33 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 EXPECT_CALL( 556 EXPECT_CALL(
557 *server_connection_, 557 *server_connection_,
558 CloseConnection(QUIC_CRYPTO_MESSAGE_WHILE_VALIDATING_CLIENT_HELLO, 558 CloseConnection(QUIC_CRYPTO_MESSAGE_WHILE_VALIDATING_CLIENT_HELLO,
559 "Unexpected handshake message while processing CHLO", _)); 559 "Unexpected handshake message while processing CHLO", _));
560 server_stream()->OnHandshakeMessage(chlo); 560 server_stream()->OnHandshakeMessage(chlo);
561 } 561 }
562 562
563 } // namespace 563 } // namespace
564 } // namespace test 564 } // namespace test
565 } // namespace net 565 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/core/quic_crypto_server_stream.cc ('k') | net/quic/core/quic_crypto_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698