| Index: third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp
|
| diff --git a/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp b/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp
|
| index 5d168bb7dc149efc95b5d3cfedff3b573e3c776f..b595c8ab5d3f8d1fac06f25f21c51eb248a9fb79 100644
|
| --- a/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp
|
| +++ b/third_party/WebKit/Source/modules/mediastream/RTCPeerConnection.cpp
|
| @@ -593,13 +593,13 @@ void RTCPeerConnection::updateIce(ExecutionContext* context, const Dictionary& r
|
| return;
|
|
|
| MediaErrorState mediaErrorState;
|
| - WebMediaConstraints constraints = MediaConstraintsImpl::create(context, mediaConstraints, mediaErrorState);
|
| if (mediaErrorState.hadException()) {
|
| mediaErrorState.raiseException(exceptionState);
|
| return;
|
| }
|
|
|
| - bool valid = m_peerHandler->updateICE(configuration, constraints);
|
| + // Constraints are ignored.
|
| + bool valid = m_peerHandler->updateICE(configuration);
|
| if (!valid)
|
| exceptionState.throwDOMException(SyntaxError, "Could not update the ICE Agent with the given configuration.");
|
| }
|
|
|