Chromium Code Reviews

Unified Diff: webrtc/api/jsepicecandidate.h

Issue 2688943003: Add the URL attribute to cricket::Candiate. (Objc wrapper) (Closed)
Patch Set: Fix format and typo. Created 3 years, 10 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/api/jsepicecandidate.h
diff --git a/webrtc/api/jsepicecandidate.h b/webrtc/api/jsepicecandidate.h
index f06863765c911b81d3c0b76708750a598706e59d..a8919e0a00e3254ead036e5c0809b03475eefa8a 100644
--- a/webrtc/api/jsepicecandidate.h
+++ b/webrtc/api/jsepicecandidate.h
@@ -43,6 +43,8 @@ class JsepIceCandidate : public IceCandidateInterface {
return candidate_;
}
+ virtual std::string server_url() const { return candidate_.url(); }
+
virtual bool ToString(std::string* out) const;
private:

Powered by Google App Engine