| Index: client/dom/frog/dom_frog.dart | 
| diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart | 
| index 45cc18813851b1b9ea34a2d6db1947ffb6e805b8..26fe9e24b58dbfc1ddb24265c68a907bf11f913b 100644 | 
| --- a/client/dom/frog/dom_frog.dart | 
| +++ b/client/dom/frog/dom_frog.dart | 
| @@ -4338,6 +4338,13 @@ class _IDBVersionChangeRequestJs extends _IDBRequestJs implements IDBVersionChan | 
| EventListener onblocked; | 
| } | 
|  | 
| +class _IceCandidateJs extends _DOMTypeJs implements IceCandidate native "*IceCandidate" { | 
| + | 
| +  final String label; | 
| + | 
| +  String toSdp() native; | 
| +} | 
| + | 
| class _ImageDataJs extends _DOMTypeJs implements ImageData native "*ImageData" { | 
|  | 
| final _CanvasPixelArrayJs data; | 
| @@ -11258,8 +11265,6 @@ class _WebKitCSSTransformValueJs extends _CSSValueListJs implements WebKitCSSTra | 
| class _WebKitNamedFlowJs extends _DOMTypeJs implements WebKitNamedFlow native "*WebKitNamedFlow" { | 
|  | 
| final bool overflow; | 
| - | 
| -  _NodeListJs getRegionsByContentNode(_NodeJs contentNode) native; | 
| } | 
|  | 
| class _WebKitPointJs extends _DOMTypeJs implements WebKitPoint native "*WebKitPoint" { | 
| @@ -11703,6 +11708,14 @@ return new Option(data, value, defaultSelected, selected); | 
| // 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();'''; | 
| @@ -16970,6 +16983,20 @@ interface IDBVersionChangeRequest extends IDBRequest { | 
|  | 
| // 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; | 
| @@ -23107,8 +23134,6 @@ interface WebKitCSSTransformValue extends CSSValueList { | 
| 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 | 
|  |