Index: webrtc/p2p/base/transportcontroller.h |
diff --git a/webrtc/p2p/base/transportcontroller.h b/webrtc/p2p/base/transportcontroller.h |
index ed7216033b429d91625fd16a3c86d3a55cf9722f..450e6b391fa56add9bba368a020f8d7f3e5580d0 100644 |
--- a/webrtc/p2p/base/transportcontroller.h |
+++ b/webrtc/p2p/base/transportcontroller.h |
@@ -15,7 +15,6 @@ |
#include <string> |
#include <vector> |
-#include "webrtc/base/asyncinvoker.h" |
#include "webrtc/base/sigslot.h" |
#include "webrtc/base/sslstreamadapter.h" |
#include "webrtc/p2p/base/candidate.h" |
@@ -75,7 +74,6 @@ |
bool AddRemoteCandidates(const std::string& transport_name, |
const Candidates& candidates, |
std::string* err); |
- bool RemoveRemoteCandidates(const Candidates& candidates, std::string* err); |
bool ReadyForRemoteCandidates(const std::string& transport_name); |
bool GetStats(const std::string& transport_name, TransportStats* stats); |
@@ -109,8 +107,6 @@ |
// (transport_name, candidates) |
sigslot::signal2<const std::string&, const Candidates&> |
SignalCandidatesGathered; |
- |
- sigslot::signal1<const Candidates&> SignalCandidatesRemoved; |
// for unit test |
const rtc::scoped_refptr<rtc::RTCCertificate>& certificate_for_testing(); |
@@ -180,7 +176,6 @@ |
bool AddRemoteCandidates_w(const std::string& transport_name, |
const Candidates& candidates, |
std::string* err); |
- bool RemoveRemoteCandidates_w(const Candidates& candidates, std::string* err); |
bool ReadyForRemoteCandidates_w(const std::string& transport_name); |
bool GetStats_w(const std::string& transport_name, TransportStats* stats); |
@@ -190,9 +185,6 @@ |
void OnChannelGatheringState_w(TransportChannelImpl* channel); |
void OnChannelCandidateGathered_w(TransportChannelImpl* channel, |
const Candidate& candidate); |
- void OnChannelCandidatesRemoved(const Candidates& candidates); |
- void OnChannelCandidatesRemoved_w(TransportChannelImpl* channel, |
- const Candidates& candidates); |
void OnChannelRoleConflict_w(TransportChannelImpl* channel); |
void OnChannelConnectionRemoved_w(TransportChannelImpl* channel); |
@@ -220,7 +212,6 @@ |
bool ice_role_switch_ = false; |
uint64_t ice_tiebreaker_ = rtc::CreateRandomId64(); |
rtc::scoped_refptr<rtc::RTCCertificate> certificate_; |
- rtc::AsyncInvoker invoker_; |
}; |
} // namespace cricket |