| OLD | NEW |
| 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_CONNECTION_HELPER_H_ | 8 #ifndef NET_QUIC_QUIC_CONNECTION_HELPER_H_ |
| 9 #define NET_QUIC_QUIC_CONNECTION_HELPER_H_ | 9 #define NET_QUIC_QUIC_CONNECTION_HELPER_H_ |
| 10 | 10 |
| 11 #include "net/quic/quic_connection.h" | 11 #include "net/quic/quic_connection.h" |
| 12 | 12 |
| 13 #include <set> | 13 #include <set> |
| 14 | 14 |
| 15 #include "base/basictypes.h" |
| 15 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 16 #include "net/base/ip_endpoint.h" | 17 #include "net/base/ip_endpoint.h" |
| 17 #include "net/quic/quic_protocol.h" | 18 #include "net/quic/quic_protocol.h" |
| 18 #include "net/quic/quic_time.h" | 19 #include "net/quic/quic_time.h" |
| 19 #include "net/udp/datagram_client_socket.h" | 20 #include "net/udp/datagram_client_socket.h" |
| 20 | 21 |
| 21 namespace base { | 22 namespace base { |
| 22 class TaskRunner; | 23 class TaskRunner; |
| 23 } // namespace base | 24 } // namespace base |
| 24 | 25 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 45 base::TaskRunner* task_runner_; | 46 base::TaskRunner* task_runner_; |
| 46 const QuicClock* clock_; | 47 const QuicClock* clock_; |
| 47 QuicRandom* random_generator_; | 48 QuicRandom* random_generator_; |
| 48 | 49 |
| 49 DISALLOW_COPY_AND_ASSIGN(QuicConnectionHelper); | 50 DISALLOW_COPY_AND_ASSIGN(QuicConnectionHelper); |
| 50 }; | 51 }; |
| 51 | 52 |
| 52 } // namespace net | 53 } // namespace net |
| 53 | 54 |
| 54 #endif // NET_QUIC_QUIC_CONNECTION_HELPER_H_ | 55 #endif // NET_QUIC_QUIC_CONNECTION_HELPER_H_ |
| OLD | NEW |