Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1076)

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

Issue 2697313003: Use rtc::ToString instead of std::to_string. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/p2p/base/dtlstransportinternal.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/icetransportinternal.h
diff --git a/webrtc/p2p/base/icetransportinternal.h b/webrtc/p2p/base/icetransportinternal.h
index 1391cc9c96908dadd558b1d1f462e0c5e199685a..074a34a15d292214d2495a55731d93b72c3b40e3 100644
--- a/webrtc/p2p/base/icetransportinternal.h
+++ b/webrtc/p2p/base/icetransportinternal.h
@@ -13,6 +13,7 @@
#include <string>
+#include "webrtc/base/stringencode.h"
#include "webrtc/p2p/base/candidate.h"
#include "webrtc/p2p/base/candidatepairinterface.h"
#include "webrtc/p2p/base/jseptransport.h"
@@ -143,7 +144,7 @@ class IceTransportInternal : public rtc::PacketTransportInternal {
// Debugging description of this transport.
std::string debug_name() const override {
- return transport_name() + " " + std::to_string(component());
+ return transport_name() + " " + rtc::ToString(component());
}
};
« no previous file with comments | « webrtc/p2p/base/dtlstransportinternal.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698