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

Unified Diff: Source/modules/mediastream/RTCIceCandidate.h

Issue 187673002: MediaStream API: Update RTCIceCandidate to match the Spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added test Created 6 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
Index: Source/modules/mediastream/RTCIceCandidate.h
diff --git a/Source/modules/mediastream/RTCIceCandidate.h b/Source/modules/mediastream/RTCIceCandidate.h
index 9d934055751354a3e08d5ddff96ce530bd2bf155..296f087a2bd2474b3596e0c0899563a6b302e8a0 100644
--- a/Source/modules/mediastream/RTCIceCandidate.h
+++ b/Source/modules/mediastream/RTCIceCandidate.h
@@ -49,10 +49,13 @@ public:
static PassRefPtr<RTCIceCandidate> create(blink::WebRTCICECandidate);
String candidate() const;
+ void setCandidate(String);
String sdpMid() const;
+ void setSdpMid(String);
unsigned short sdpMLineIndex() const;
+ void setSdpMLineIndex(unsigned short);
- blink::WebRTCICECandidate webCandidate();
+ blink::WebRTCICECandidate webCandidate() const;
private:
explicit RTCIceCandidate(blink::WebRTCICECandidate);
« no previous file with comments | « LayoutTests/fast/mediastream/RTCIceCandidate-expected.txt ('k') | Source/modules/mediastream/RTCIceCandidate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698