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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.h

Issue 2413703002: Sync RTCDataChannel and RTCPeerConnection IDL with spec (Closed)
Patch Set: rebase Created 4 years, 2 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: 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&);

Powered by Google App Engine
This is Rietveld 408576698