From 0627e21a1a2926b58ca64eb198381ef02b666714 Mon Sep 17 00:00:00 2001 From: Sebastian Jansson Date: Mon, 22 Oct 2018 18:06:13 +0200 Subject: [PATCH] Removes unused DeliverPacket from CallClient. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:9510 Change-Id: Idfdce13ef407449c3896ad400ab4b8fb3ef589a1 Reviewed-on: https://webrtc-review.googlesource.com/c/107420 Reviewed-by: Björn Terelius Commit-Queue: Sebastian Jansson Cr-Commit-Position: refs/heads/master@{#25308} --- test/scenario/call_client.cc | 5 ----- test/scenario/call_client.h | 3 --- 2 files changed, 8 deletions(-) diff --git a/test/scenario/call_client.cc b/test/scenario/call_client.cc index 92c582e4d8..f51627b921 100644 --- a/test/scenario/call_client.cc +++ b/test/scenario/call_client.cc @@ -159,11 +159,6 @@ CallClient::~CallClient() { delete header_parser_; } -void CallClient::DeliverPacket(MediaType media_type, - rtc::CopyOnWriteBuffer packet, - Timestamp at_time) { -} - ColumnPrinter CallClient::StatsPrinter() { return ColumnPrinter::Lambda( "pacer_delay call_send_bw", diff --git a/test/scenario/call_client.h b/test/scenario/call_client.h index 48400cd1c8..fe39bd87be 100644 --- a/test/scenario/call_client.h +++ b/test/scenario/call_client.h @@ -81,9 +81,6 @@ class CallClient : public NetworkReceiverInterface { friend class ReceiveAudioStream; friend class AudioStreamPair; friend class NetworkNodeTransport; - void DeliverPacket(MediaType media_type, - rtc::CopyOnWriteBuffer packet, - Timestamp at_time); uint32_t GetNextVideoSsrc(); uint32_t GetNextAudioSsrc(); uint32_t GetNextRtxSsrc();