Chromium Code Reviews

Unified Diff: webrtc/p2p/base/udptransportchannel.h

Issue 2606123002: Remove the dependency of TransportChannel and TransportChannelImpl. (Closed)
Patch Set: Revert the change of stun_unittests Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/p2p/base/udptransportchannel.h
diff --git a/webrtc/p2p/base/udptransportchannel.h b/webrtc/p2p/base/udptransportchannel.h
index 2152fb7308046cd21f31e30947bd2d407d93687c..cbe25799a0f9242668b43568002c2894b5abdf85 100644
--- a/webrtc/p2p/base/udptransportchannel.h
+++ b/webrtc/p2p/base/udptransportchannel.h
@@ -35,7 +35,7 @@ class UdpTransportChannel : public rtc::PacketTransportInterface {
UdpTransportChannel(const std::string& transport_name, rtc::SocketServer* ss);
~UdpTransportChannel();
- const std::string debug_name() const override { return transport_name_; }
+ std::string debug_name() const override { return transport_name_; }
bool receiving() const override {
// TODO(johan): Implement method and signal.

Powered by Google App Engine