| Index: third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
|
| diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
|
| index a27b974af1458221401fbdc6c894d55cd5f0106d..ab12e1602e2aa595c800fb0dd2622e8fdf60968d 100644
|
| --- a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
|
| +++ b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
|
| @@ -107,8 +107,7 @@ class RTCPeerConnection final : public EventTargetWithInlineData,
|
|
|
| String signalingState() const;
|
|
|
| - void updateIce(ExecutionContext*,
|
| - const Dictionary& rtcConfiguration,
|
| + void updateIce(const Dictionary& rtcConfiguration,
|
| const Dictionary& mediaConstraints,
|
| ExceptionState&);
|
|
|
| @@ -148,7 +147,8 @@ class RTCPeerConnection final : public EventTargetWithInlineData,
|
| MediaStreamTrack* selector = nullptr);
|
| ScriptPromise getStats(ScriptState*, MediaStreamTrack* selector = nullptr);
|
|
|
| - RTCDataChannel* createDataChannel(String label,
|
| + RTCDataChannel* createDataChannel(ExecutionContext*,
|
| + String label,
|
| const Dictionary& dataChannelDict,
|
| ExceptionState&);
|
|
|
|
|