blob: da74858d69b1677670e52678f73d9d6eaf76b799 [file] [log] [blame]
// Copyright (c) 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/third_party/quiche/src/quic/quartc/quartc_connection_helper.h"
namespace quic {
QuartcConnectionHelper::QuartcConnectionHelper(const QuicClock* clock,
QuicRandom* random)
: clock_(clock), random_(random) {}
const QuicClock* QuartcConnectionHelper::GetClock() const {
return clock_;
}
QuicRandom* QuartcConnectionHelper::GetRandomGenerator() {
return random_;
}
QuicBufferAllocator* QuartcConnectionHelper::GetStreamSendBufferAllocator() {
return &buffer_allocator_;
}
} // namespace quic