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

Unified Diff: webrtc/p2p/base/dtlstransportinternal.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 | « no previous file | webrtc/p2p/base/icetransportinternal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/dtlstransportinternal.h
diff --git a/webrtc/p2p/base/dtlstransportinternal.h b/webrtc/p2p/base/dtlstransportinternal.h
index 483a92898e2e1910bf10adcac7884ddc7fd57229..7a1e8ad3e985a7f05680d5cd0f7890fe981968c8 100644
--- a/webrtc/p2p/base/dtlstransportinternal.h
+++ b/webrtc/p2p/base/dtlstransportinternal.h
@@ -16,6 +16,7 @@
#include <vector>
#include "webrtc/base/sslstreamadapter.h"
+#include "webrtc/base/stringencode.h"
#include "webrtc/p2p/base/icetransportinternal.h"
#include "webrtc/p2p/base/jseptransport.h"
#include "webrtc/p2p/base/packettransportinternal.h"
@@ -97,7 +98,7 @@ class DtlsTransportInternal : 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());
}
protected:
« no previous file with comments | « no previous file | webrtc/p2p/base/icetransportinternal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698