| Index: client/dom/dom.dart | 
| diff --git a/client/dom/dom.dart b/client/dom/dom.dart | 
| index 33fdbc8b83029faca6b40cfad59cd201cbd355dc..ccf1c8dc6a5d93100100aff90ddd25a06a6bc559 100644 | 
| --- a/client/dom/dom.dart | 
| +++ b/client/dom/dom.dart | 
| @@ -69,6 +69,13 @@ class _HTMLOptionElementFactoryProvider { | 
| // 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) => _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 _MediaStreamFactoryProvider { | 
| factory MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks) => _dummy(); | 
| } | 
| @@ -5308,6 +5315,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; | 
| @@ -11445,8 +11466,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 | 
|  |