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

Side by Side Diff: net/tools/quic/quic_simple_client.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/tools/quic/quic_server_test.cc ('k') | net/tools/quic/quic_simple_server_session.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/tools/quic/quic_simple_client.h" 5 #include "net/tools/quic/quic_simple_client.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
11 #include "base/threading/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 #include "net/base/net_errors.h" 12 #include "net/base/net_errors.h"
13 #include "net/http/http_request_info.h" 13 #include "net/http/http_request_info.h"
14 #include "net/http/http_response_info.h" 14 #include "net/http/http_response_info.h"
15 #include "net/log/net_log_source.h" 15 #include "net/log/net_log_source.h"
16 #include "net/log/net_log_with_source.h" 16 #include "net/log/net_log_with_source.h"
17 #include "net/quic/chromium/quic_chromium_alarm_factory.h" 17 #include "net/quic/chromium/quic_chromium_alarm_factory.h"
18 #include "net/quic/chromium/quic_chromium_connection_helper.h" 18 #include "net/quic/chromium/quic_chromium_connection_helper.h"
19 #include "net/quic/chromium/quic_chromium_packet_reader.h" 19 #include "net/quic/chromium/quic_chromium_packet_reader.h"
20 #include "net/quic/chromium/quic_chromium_packet_writer.h" 20 #include "net/quic/chromium/quic_chromium_packet_writer.h"
21 #include "net/quic/core/crypto/quic_random.h" 21 #include "net/quic/core/crypto/quic_random.h"
22 #include "net/quic/core/quic_connection.h" 22 #include "net/quic/core/quic_connection.h"
23 #include "net/quic/core/quic_flags.h" 23 #include "net/quic/platform/api/quic_flags.h"
24 #include "net/quic/core/quic_packets.h" 24 #include "net/quic/core/quic_packets.h"
25 #include "net/quic/core/quic_server_id.h" 25 #include "net/quic/core/quic_server_id.h"
26 #include "net/quic/core/spdy_utils.h" 26 #include "net/quic/core/spdy_utils.h"
27 #include "net/socket/udp_client_socket.h" 27 #include "net/socket/udp_client_socket.h"
28 #include "net/spdy/spdy_header_block.h" 28 #include "net/spdy/spdy_header_block.h"
29 #include "net/spdy/spdy_http_utils.h" 29 #include "net/spdy/spdy_http_utils.h"
30 30
31 using std::string; 31 using std::string;
32 32
33 namespace net { 33 namespace net {
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 QuicSocketAddress(QuicSocketAddressImpl(local_address)), 160 QuicSocketAddress(QuicSocketAddressImpl(local_address)),
161 QuicSocketAddress(QuicSocketAddressImpl(peer_address)), packet); 161 QuicSocketAddress(QuicSocketAddressImpl(peer_address)), packet);
162 if (!session()->connection()->connected()) { 162 if (!session()->connection()->connected()) {
163 return false; 163 return false;
164 } 164 }
165 165
166 return true; 166 return true;
167 } 167 }
168 168
169 } // namespace net 169 } // namespace net
OLDNEW
« no previous file with comments | « net/tools/quic/quic_server_test.cc ('k') | net/tools/quic/quic_simple_server_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698