| 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 413f2707d5289d0cc343c35002cf2fed5b496de3..987ef0f61064bd79383491161abb3d2721ee0106 100644
|
| --- a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
|
| +++ b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h
|
| @@ -108,9 +108,7 @@ class RTCPeerConnection final : public EventTargetWithInlineData,
|
|
|
| String signalingState() const;
|
|
|
| - void setConfiguration(ExecutionContext*,
|
| - const RTCConfiguration&,
|
| - ExceptionState&);
|
| + void setConfiguration(ScriptState*, const RTCConfiguration&, ExceptionState&);
|
|
|
| // Certificate management
|
| // http://w3c.github.io/webrtc-pc/#sec.cert-mgmt
|
| @@ -136,7 +134,7 @@ class RTCPeerConnection final : public EventTargetWithInlineData,
|
|
|
| MediaStream* getStreamById(const String& streamId);
|
|
|
| - void addStream(ExecutionContext*,
|
| + void addStream(ScriptState*,
|
| MediaStream*,
|
| const Dictionary& mediaConstraints,
|
| ExceptionState&);
|
| @@ -148,7 +146,7 @@ class RTCPeerConnection final : public EventTargetWithInlineData,
|
| MediaStreamTrack* selector = nullptr);
|
| ScriptPromise getStats(ScriptState*);
|
|
|
| - RTCDataChannel* createDataChannel(ExecutionContext*,
|
| + RTCDataChannel* createDataChannel(ScriptState*,
|
| String label,
|
| const Dictionary& dataChannelDict,
|
| ExceptionState&);
|
|
|