| Index: lib/dom/dom.dart
|
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
|
| index c41964f4345b42730ae26768c9a8679358297b49..6d1c74180a97bf1ed712378927b21990ca05458a 100644
|
| --- a/lib/dom/dom.dart
|
| +++ b/lib/dom/dom.dart
|
| @@ -97,6 +97,13 @@ class _MessageChannelFactoryProvider {
|
| // 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.
|
|
|
| +class _PeerConnection00FactoryProvider {
|
| + factory PeerConnection00(String serverConfiguration, IceCallback iceCallback) => _dummy();
|
| +}
|
| +// Copyright (c) 2012, 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.
|
| +
|
| class _SessionDescriptionFactoryProvider {
|
| factory SessionDescription(String sdp) => _dummy();
|
| }
|
| @@ -1207,6 +1214,8 @@ interface Console {
|
|
|
| final MemoryInfo memory;
|
|
|
| + final List<ScriptProfile> profiles;
|
| +
|
| void assertCondition(bool condition, Object arg);
|
|
|
| void count();
|
| @@ -5335,6 +5344,13 @@ interface IDBVersionChangeRequest extends IDBRequest {
|
|
|
| EventListener onblocked;
|
| }
|
| +// Copyright (c) 2011, 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.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| +typedef bool IceCallback(IceCandidate candidate, bool moreToFollow, PeerConnection00 source);
|
| // Copyright (c) 2012, 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.
|
| @@ -6364,6 +6380,90 @@ interface PageTransitionEvent extends Event {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| +interface PeerConnection00 default _PeerConnection00FactoryProvider {
|
| +
|
| + PeerConnection00(String serverConfiguration, IceCallback iceCallback);
|
| +
|
| + static final int ACTIVE = 2;
|
| +
|
| + static final int CLOSED = 3;
|
| +
|
| + static final int ICE_CHECKING = 0x300;
|
| +
|
| + static final int ICE_CLOSED = 0x700;
|
| +
|
| + static final int ICE_COMPLETED = 0x500;
|
| +
|
| + static final int ICE_CONNECTED = 0x400;
|
| +
|
| + static final int ICE_FAILED = 0x600;
|
| +
|
| + static final int ICE_GATHERING = 0x100;
|
| +
|
| + static final int ICE_WAITING = 0x200;
|
| +
|
| + static final int NEGOTIATING = 1;
|
| +
|
| + static final int NEW = 0;
|
| +
|
| + static final int SDP_ANSWER = 0x300;
|
| +
|
| + static final int SDP_OFFER = 0x100;
|
| +
|
| + static final int SDP_PRANSWER = 0x200;
|
| +
|
| + final int iceState;
|
| +
|
| + final SessionDescription localDescription;
|
| +
|
| + final MediaStreamList localStreams;
|
| +
|
| + EventListener onaddstream;
|
| +
|
| + EventListener onconnecting;
|
| +
|
| + EventListener onopen;
|
| +
|
| + EventListener onremovestream;
|
| +
|
| + EventListener onstatechange;
|
| +
|
| + final int readyState;
|
| +
|
| + final SessionDescription remoteDescription;
|
| +
|
| + final MediaStreamList remoteStreams;
|
| +
|
| + void addEventListener(String type, EventListener listener, [bool useCapture]);
|
| +
|
| + void addStream(MediaStream stream, [String mediaStreamHints]);
|
| +
|
| + void close();
|
| +
|
| + SessionDescription createAnswer(String offer, [String mediaHints]);
|
| +
|
| + SessionDescription createOffer([String mediaHints]);
|
| +
|
| + bool dispatchEvent(Event event);
|
| +
|
| + void processIceMessage(IceCandidate candidate);
|
| +
|
| + void removeEventListener(String type, EventListener listener, [bool useCapture]);
|
| +
|
| + void removeStream(MediaStream stream);
|
| +
|
| + void setLocalDescription(int action, SessionDescription desc);
|
| +
|
| + void setRemoteDescription(int action, SessionDescription desc);
|
| +
|
| + void startIce([String iceOptions]);
|
| +}
|
| +// Copyright (c) 2012, 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.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| interface Performance {
|
|
|
| final MemoryInfo memory;
|
| @@ -9416,7 +9516,7 @@ interface ScriptProfileNode {
|
|
|
| final int callUID;
|
|
|
| - final List children;
|
| + final List<ScriptProfileNode> children;
|
|
|
| final String functionName;
|
|
|
|
|