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

Side by Side Diff: net/quic/chromium/quic_chromium_connection_helper.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 (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 // The Chrome-specific helper for QuicConnection which uses 5 // The Chrome-specific helper for QuicConnection which uses
6 // a TaskRunner for alarms, and uses a DatagramClientSocket for writing data. 6 // a TaskRunner for alarms, and uses a DatagramClientSocket for writing data.
7 7
8 #ifndef NET_QUIC_QUIC_CHROMIUM_CONNECTION_HELPER_H_ 8 #ifndef NET_QUIC_QUIC_CHROMIUM_CONNECTION_HELPER_H_
9 #define NET_QUIC_QUIC_CHROMIUM_CONNECTION_HELPER_H_ 9 #define NET_QUIC_QUIC_CHROMIUM_CONNECTION_HELPER_H_
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "net/base/ip_endpoint.h" 12 #include "net/base/ip_endpoint.h"
13 #include "net/quic/quic_connection.h" 13 #include "net/quic/core/quic_connection.h"
14 #include "net/quic/quic_protocol.h" 14 #include "net/quic/core/quic_protocol.h"
15 #include "net/quic/quic_simple_buffer_allocator.h" 15 #include "net/quic/core/quic_simple_buffer_allocator.h"
16 #include "net/quic/quic_time.h" 16 #include "net/quic/core/quic_time.h"
17 #include "net/udp/datagram_client_socket.h" 17 #include "net/udp/datagram_client_socket.h"
18 18
19 namespace net { 19 namespace net {
20 20
21 class QuicClock; 21 class QuicClock;
22 class QuicRandom; 22 class QuicRandom;
23 23
24 class NET_EXPORT_PRIVATE QuicChromiumConnectionHelper 24 class NET_EXPORT_PRIVATE QuicChromiumConnectionHelper
25 : public QuicConnectionHelperInterface { 25 : public QuicConnectionHelperInterface {
26 public: 26 public:
(...skipping 10 matching lines...) Expand all
37 const QuicClock* clock_; 37 const QuicClock* clock_;
38 QuicRandom* random_generator_; 38 QuicRandom* random_generator_;
39 SimpleBufferAllocator buffer_allocator_; 39 SimpleBufferAllocator buffer_allocator_;
40 40
41 DISALLOW_COPY_AND_ASSIGN(QuicChromiumConnectionHelper); 41 DISALLOW_COPY_AND_ASSIGN(QuicChromiumConnectionHelper);
42 }; 42 };
43 43
44 } // namespace net 44 } // namespace net
45 45
46 #endif // NET_QUIC_QUIC_CHROMIUM_CONNECTION_HELPER_H_ 46 #endif // NET_QUIC_QUIC_CHROMIUM_CONNECTION_HELPER_H_
OLDNEW
« no previous file with comments | « net/quic/chromium/quic_chromium_client_stream_test.cc ('k') | net/quic/chromium/quic_chromium_packet_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698