OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "net/quic/quartc/quartc_connection_helper.h" |
| 6 |
| 7 namespace net { |
| 8 |
| 9 QuartcConnectionHelper::~QuartcConnectionHelper() {} |
| 10 |
| 11 const QuicClock* QuartcConnectionHelper::GetClock() const { |
| 12 return &clock_; |
| 13 } |
| 14 |
| 15 QuicRandom* QuartcConnectionHelper::GetRandomGenerator() { |
| 16 return QuicRandom::GetInstance(); |
| 17 } |
| 18 |
| 19 QuicBufferAllocator* QuartcConnectionHelper::GetBufferAllocator() { |
| 20 return &buffer_allocator_; |
| 21 } |
| 22 |
| 23 } // namespace net |
OLD | NEW |