Index: client/html/frog/html_frog.dart |
diff --git a/client/html/frog/html_frog.dart b/client/html/frog/html_frog.dart |
index d7fd7d6bff3734d239d81466e34f59b80d6fda41..9d2a3118eb14fecae4ef9a38c27c6c2dec57fc67 100644 |
--- a/client/html/frog/html_frog.dart |
+++ b/client/html/frog/html_frog.dart |
@@ -7347,6 +7347,13 @@ class _IFrameElementImpl extends _ElementImpl implements IFrameElement native "* |
_SVGDocumentImpl getSVGDocument() native; |
} |
+class _IceCandidateImpl implements IceCandidate native "*IceCandidate" { |
+ |
+ final String label; |
+ |
+ String toSdp() native; |
+} |
+ |
class _ImageDataImpl implements ImageData native "*ImageData" { |
final _CanvasPixelArrayImpl data; |
@@ -9001,8 +9008,6 @@ class _NotificationEventsImpl extends _EventsImpl implements NotificationEvents |
EventListenerList get close() => _get('close'); |
- EventListenerList get display() => _get('display'); |
- |
EventListenerList get error() => _get('error'); |
EventListenerList get show() => _get('show'); |
@@ -15244,8 +15249,6 @@ class _WebKitCSSRegionRuleImpl extends _CSSRuleImpl implements WebKitCSSRegionRu |
class _WebKitNamedFlowImpl implements WebKitNamedFlow native "*WebKitNamedFlow" { |
final bool overflow; |
- |
- _NodeListImpl getRegionsByContentNode(_NodeImpl contentNode) native; |
} |
class _WebSocketImpl extends _EventTargetImpl implements WebSocket native "*WebSocket" { |
@@ -16099,6 +16102,14 @@ class _FileReaderSyncFactoryProvider { |
// 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 _IceCandidateFactoryProvider { |
+ factory IceCandidate(String label, String candidateLine) native |
+ '''return new IceCandidate(label, candidateLine);'''; |
+} |
+// 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 _MediaControllerFactoryProvider { |
factory MediaController() native |
'''return new MediaController();'''; |
@@ -22441,6 +22452,20 @@ interface IFrameElement extends Element { |
// WARNING: Do not edit - generated code. |
+interface IceCandidate default _IceCandidateFactoryProvider { |
+ |
+ IceCandidate(String label, String candidateLine); |
+ |
+ final String label; |
+ |
+ String toSdp(); |
+} |
+// 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 ImageData { |
final CanvasPixelArray data; |
@@ -23799,8 +23824,6 @@ interface NotificationEvents extends Events { |
EventListenerList get close(); |
- EventListenerList get display(); |
- |
EventListenerList get error(); |
EventListenerList get show(); |
@@ -29566,8 +29589,6 @@ interface WebKitCSSRegionRule extends CSSRule { |
interface WebKitNamedFlow { |
final bool overflow; |
- |
- NodeList getRegionsByContentNode(Node contentNode); |
} |
// 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 |