| 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);
|
|
|