| Index: net/quic/quic_chromium_connection_helper.cc
|
| diff --git a/net/quic/quic_connection_helper.cc b/net/quic/quic_chromium_connection_helper.cc
|
| similarity index 84%
|
| rename from net/quic/quic_connection_helper.cc
|
| rename to net/quic/quic_chromium_connection_helper.cc
|
| index 9b3d4d7b8de032204c03bd311d0eedbb59e161bc..68c0a105061aa031ecf1459f495d60788eb8281a 100644
|
| --- a/net/quic/quic_connection_helper.cc
|
| +++ b/net/quic/quic_chromium_connection_helper.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "net/quic/quic_connection_helper.h"
|
| +#include "net/quic/quic_chromium_connection_helper.h"
|
|
|
| #include "base/location.h"
|
| #include "base/logging.h"
|
| @@ -91,29 +91,31 @@ class QuicChromeAlarm : public QuicAlarm {
|
|
|
| } // namespace
|
|
|
| -QuicConnectionHelper::QuicConnectionHelper(base::TaskRunner* task_runner,
|
| - const QuicClock* clock,
|
| - QuicRandom* random_generator)
|
| +QuicChromiumConnectionHelper::QuicChromiumConnectionHelper(
|
| + base::TaskRunner* task_runner,
|
| + const QuicClock* clock,
|
| + QuicRandom* random_generator)
|
| : task_runner_(task_runner),
|
| clock_(clock),
|
| random_generator_(random_generator),
|
| weak_factory_(this) {}
|
|
|
| -QuicConnectionHelper::~QuicConnectionHelper() {}
|
| +QuicChromiumConnectionHelper::~QuicChromiumConnectionHelper() {}
|
|
|
| -const QuicClock* QuicConnectionHelper::GetClock() const {
|
| +const QuicClock* QuicChromiumConnectionHelper::GetClock() const {
|
| return clock_;
|
| }
|
|
|
| -QuicRandom* QuicConnectionHelper::GetRandomGenerator() {
|
| +QuicRandom* QuicChromiumConnectionHelper::GetRandomGenerator() {
|
| return random_generator_;
|
| }
|
|
|
| -QuicAlarm* QuicConnectionHelper::CreateAlarm(QuicAlarm::Delegate* delegate) {
|
| +QuicAlarm* QuicChromiumConnectionHelper::CreateAlarm(
|
| + QuicAlarm::Delegate* delegate) {
|
| return new QuicChromeAlarm(clock_, task_runner_, delegate);
|
| }
|
|
|
| -QuicBufferAllocator* QuicConnectionHelper::GetBufferAllocator() {
|
| +QuicBufferAllocator* QuicChromiumConnectionHelper::GetBufferAllocator() {
|
| return &buffer_allocator_;
|
| }
|
|
|
|
|