| Index: Source/modules/mediastream/RTCPeerConnection.h
|
| diff --git a/Source/modules/mediastream/RTCPeerConnection.h b/Source/modules/mediastream/RTCPeerConnection.h
|
| index bf040004b0b42800cbc8daa0bbb574c116439bfa..b9cf902c008c7eb949035be70dee2cc4833c3894 100644
|
| --- a/Source/modules/mediastream/RTCPeerConnection.h
|
| +++ b/Source/modules/mediastream/RTCPeerConnection.h
|
| @@ -71,10 +71,10 @@ public:
|
| void createAnswer(RTCSessionDescriptionCallback*, RTCErrorCallback*, const Dictionary&, ExceptionState&);
|
|
|
| void setLocalDescription(RTCSessionDescription*, VoidCallback*, RTCErrorCallback*, ExceptionState&);
|
| - RTCSessionDescription* localDescription(ExceptionState&);
|
| + RTCSessionDescription* localDescription();
|
|
|
| void setRemoteDescription(RTCSessionDescription*, VoidCallback*, RTCErrorCallback*, ExceptionState&);
|
| - RTCSessionDescription* remoteDescription(ExceptionState&);
|
| + RTCSessionDescription* remoteDescription();
|
|
|
| String signalingState() const;
|
|
|
| @@ -164,6 +164,8 @@ private:
|
|
|
| void closeInternal();
|
|
|
| + Member<RTCSessionDescription> m_localDescription;
|
| + Member<RTCSessionDescription> m_remoteDescription;
|
| SignalingState m_signalingState;
|
| ICEGatheringState m_iceGatheringState;
|
| ICEConnectionState m_iceConnectionState;
|
|
|