Removing unused cricket::Port constructor.

Has an extra IPAddress argument that's not used at all.

TBR=qingsi@webrtc.org

Bug: None
Change-Id: If516045ab3d4edf4ac9c394dab52b3243db276ad
Reviewed-on: https://webrtc-review.googlesource.com/84061
Reviewed-by: Taylor Brandstetter <deadbeef@webrtc.org>
Commit-Queue: Taylor Brandstetter <deadbeef@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#23646}
This commit is contained in:
Taylor Brandstetter
2018-06-18 13:47:06 -07:00
committed by Commit Bot
parent 6bbeb080b8
commit 15ac52109f
2 changed files with 0 additions and 17 deletions

View File

@ -274,15 +274,6 @@ Port::Port(rtc::Thread* thread,
Construct();
}
Port::Port(rtc::Thread* thread,
const std::string& type,
rtc::PacketSocketFactory* factory,
rtc::Network* network,
const rtc::IPAddress& ip,
const std::string& username_fragment,
const std::string& password)
: Port(thread, type, factory, network, username_fragment, password) {}
Port::Port(rtc::Thread* thread,
const std::string& type,
rtc::PacketSocketFactory* factory,

View File

@ -194,14 +194,6 @@ class Port : public PortInterface, public rtc::MessageHandler,
rtc::Network* network,
const std::string& username_fragment,
const std::string& password);
// TODO(deadbeef): Delete this constructor once clients are moved off of it.
Port(rtc::Thread* thread,
const std::string& type,
rtc::PacketSocketFactory* factory,
rtc::Network* network,
const rtc::IPAddress& ip,
const std::string& username_fragment,
const std::string& password);
Port(rtc::Thread* thread,
const std::string& type,
rtc::PacketSocketFactory* factory,