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

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

Issue 2511633002: Rename "updateICE" to "setConfiguration", everywhere except in Blink. (Closed)
Patch Set: Created 4 years, 1 month 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.idl
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.idl b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.idl
index 2e48d3ee8ebb1883df9c06a7b7a5a0cc86617bbb..371966228ba30553f5274ef31394874f4c3b8606 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.idl
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.idl
@@ -84,7 +84,7 @@ enum RTCIceConnectionState {
readonly attribute RTCIceConnectionState iceConnectionState;
// readonly attribute boolean? canTrickleIceCandidates;
// RTCConfiguration getConfiguration();
- // void setConfiguration(RTCConfiguration configuration);
+ [CallWith=ExecutionContext, RaisesException] void setConfiguration (RTCConfiguration configuration);
foolip 2016/11/17 10:10:54 This is great, if the implementation already does
Taylor_Brandstetter 2016/11/17 21:32:52 It doesn't do everything yet. Things it doesn't ye
foolip 2016/11/18 09:16:05 It's fine to ship with some known issues, if fixin
// TODO(guidou): close() should never throw an exception.
[RaisesException] void close();
attribute EventHandler onnegotiationneeded;
@@ -120,7 +120,6 @@ enum RTCIceConnectionState {
[RaisesException, CallWith=ScriptState] static Promise<RTCCertificate> generateCertificate(AlgorithmIdentifier keygenAlgorithm);
// Non-standard or removed from the spec:
- [Measure, CallWith=ExecutionContext, RaisesException] void updateIce(optional RTCConfiguration configuration, optional Dictionary mediaConstraints);
[Measure] sequence<MediaStream> getLocalStreams();
[Measure] sequence<MediaStream> getRemoteStreams();
[Measure] MediaStream getStreamById(DOMString streamId);

Powered by Google App Engine
This is Rietveld 408576698