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

Unified Diff: jingle/glue/utils.cc

Issue 10382003: Changes needed to roll libjingle r141 (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 7 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
Index: jingle/glue/utils.cc
===================================================================
--- jingle/glue/utils.cc (revision 135898)
+++ jingle/glue/utils.cc (working copy)
@@ -42,7 +42,7 @@
std::string SerializeP2PCandidate(const cricket::Candidate& candidate) {
// TODO(sergeyu): Use SDP to format candidates?
DictionaryValue value;
- value.SetString("ip", candidate.address().IPAsString());
+ value.SetString("ip", candidate.address().HostAsURIString());
Sergey Ulanov 2012/05/09 18:58:00 Please change this to "ipaddr().ToString()" .
Mallinath (Gone from Chromium) 2012/05/09 22:04:22 Done.
value.SetInteger("port", candidate.address().port());
value.SetString("type", candidate.type());
value.SetString("protocol", candidate.protocol());

Powered by Google App Engine
This is Rietveld 408576698