blob: 9b3c04097ecb5e20c27276a19b183ea2883919b9 [file] [log] [blame]
// Copyright 2016 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 "quic/test_tools/quic_buffered_packet_store_peer.h"
#include "quic/core/quic_buffered_packet_store.h"
namespace quic {
namespace test {
// static
QuicAlarm* QuicBufferedPacketStorePeer::expiration_alarm(
QuicBufferedPacketStore* store) {
return store->expiration_alarm_.get();
}
// static
void QuicBufferedPacketStorePeer::set_clock(QuicBufferedPacketStore* store,
const QuicClock* clock) {
store->clock_ = clock;
}
} // namespace test
} // namespace quic