| Index: tools/dom/templates/html/dart2js/impl_RTCSessionDescription.darttemplate
|
| diff --git a/tools/dom/templates/html/dart2js/impl_RTCSessionDescription.darttemplate b/tools/dom/templates/html/dart2js/impl_RTCSessionDescription.darttemplate
|
| index 9592eb5a2be6730d5f960285ee8cc7d7d19aec45..6dd65b4ff4608c29ccff2464e1a4e72555b7c83c 100644
|
| --- a/tools/dom/templates/html/dart2js/impl_RTCSessionDescription.darttemplate
|
| +++ b/tools/dom/templates/html/dart2js/impl_RTCSessionDescription.darttemplate
|
| @@ -4,15 +4,15 @@
|
|
|
| part of $LIBRARYNAME;
|
|
|
| -$(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| +$(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| factory $CLASSNAME(Map dictionary) {
|
| // TODO(efortuna): Remove this check if when you can actually construct with
|
| // the unprefixed RTCIceCandidate in Firefox (currently both are defined,
|
| // but one can't be used as a constructor).
|
| var constructorName = JS('', 'window[#]',
|
| - Device.isFirefox ? '${Device.propertyPrefix}RTCSessionDescription' :
|
| + Device.isFirefox ? '${Device.propertyPrefix}RTCSessionDescription' :
|
| 'RTCSessionDescription');
|
| - return JS('RtcSessionDescription',
|
| + return JS('RtcSessionDescription',
|
| 'new #(#)', constructorName,
|
| convertDartToNative_SerializedScriptValue(dictionary));
|
| }
|
|
|