d012dfc7a6
Fixes #38325 Change-Id: I08589781c8e8647c1e6d403baf4d6106d5308181 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/116941 Reviewed-by: Nicholas Shahan <nshahan@google.com> Commit-Queue: Mark Zhou <markzipan@google.com> Auto-Submit: Mark Zhou <markzipan@google.com>
15 lines
570 B
Plaintext
15 lines
570 B
Plaintext
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
part of $LIBRARYNAME;
|
|
|
|
$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS {
|
|
factory $CLASSNAME(Map dictionary) {
|
|
var constructorName = JS('', 'window[#]', 'RTCIceCandidate');
|
|
return JS('RtcIceCandidate', 'new #(#)', constructorName,
|
|
convertDartToNative_SerializedScriptValue(dictionary));
|
|
}
|
|
$!MEMBERS
|
|
}
|