Chromium Code Reviews| 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()); |