| OLD | NEW | 
|---|
|  | (Empty) | 
| 1 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 2 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 3 // BSD-style license that can be found in the LICENSE file. |  | 
| 4 |  | 
| 5 class _DOMParserFactoryProvider { |  | 
| 6   factory DOMParser() => _dummy(); |  | 
| 7 } |  | 
| 8 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 9 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 10 // BSD-style license that can be found in the LICENSE file. |  | 
| 11 |  | 
| 12 class _DOMURLFactoryProvider { |  | 
| 13   factory DOMURL() => _dummy(); |  | 
| 14 } |  | 
| 15 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 16 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 17 // BSD-style license that can be found in the LICENSE file. |  | 
| 18 |  | 
| 19 class _EventSourceFactoryProvider { |  | 
| 20   factory EventSource(String scriptUrl) => _dummy(); |  | 
| 21 } |  | 
| 22 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 23 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 24 // BSD-style license that can be found in the LICENSE file. |  | 
| 25 |  | 
| 26 class _FileReaderFactoryProvider { |  | 
| 27   factory FileReader() => _dummy(); |  | 
| 28 } |  | 
| 29 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 30 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 31 // BSD-style license that can be found in the LICENSE file. |  | 
| 32 |  | 
| 33 class _FileReaderSyncFactoryProvider { |  | 
| 34   factory FileReaderSync() => _dummy(); |  | 
| 35 } |  | 
| 36 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 37 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 38 // BSD-style license that can be found in the LICENSE file. |  | 
| 39 |  | 
| 40 class _HTMLAudioElementFactoryProvider { |  | 
| 41   factory HTMLAudioElement([String src = null]) => _dummy(); |  | 
| 42 } |  | 
| 43 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 44 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 45 // BSD-style license that can be found in the LICENSE file. |  | 
| 46 |  | 
| 47 class _HTMLOptionElementFactoryProvider { |  | 
| 48   factory HTMLOptionElement([String data = null, String value = null, bool defau
     ltSelected = null, bool selected = null]) => _dummy(); |  | 
| 49 } |  | 
| 50 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 51 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 52 // BSD-style license that can be found in the LICENSE file. |  | 
| 53 |  | 
| 54 class _MediaStreamFactoryProvider { |  | 
| 55   factory MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList vid
     eoTracks) => _dummy(); |  | 
| 56 } |  | 
| 57 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 58 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 59 // BSD-style license that can be found in the LICENSE file. |  | 
| 60 |  | 
| 61 class _MediaControllerFactoryProvider { |  | 
| 62   factory MediaController() => _dummy(); |  | 
| 63 } |  | 
| 64 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 65 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 66 // BSD-style license that can be found in the LICENSE file. |  | 
| 67 |  | 
| 68 class _MessageChannelFactoryProvider { |  | 
| 69   factory MessageChannel() => _dummy(); |  | 
| 70 } |  | 
| 71 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 72 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 73 // BSD-style license that can be found in the LICENSE file. |  | 
| 74 |  | 
| 75 class _PeerConnectionFactoryProvider { |  | 
| 76   factory PeerConnection(String serverConfiguration, SignalingCallback signaling
     Callback) => _dummy(); |  | 
| 77 } |  | 
| 78 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 79 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 80 // BSD-style license that can be found in the LICENSE file. |  | 
| 81 |  | 
| 82 class _ShadowRootFactoryProvider { |  | 
| 83   factory ShadowRoot(Element host) => _dummy(); |  | 
| 84 } |  | 
| 85 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 86 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 87 // BSD-style license that can be found in the LICENSE file. |  | 
| 88 |  | 
| 89 class _SharedWorkerFactoryProvider { |  | 
| 90   factory SharedWorker(String scriptURL, [String name = null]) => _dummy(); |  | 
| 91 } |  | 
| 92 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 93 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 94 // BSD-style license that can be found in the LICENSE file. |  | 
| 95 |  | 
| 96 class _TextTrackCueFactoryProvider { |  | 
| 97   factory TextTrackCue(String id, num startTime, num endTime, String text, [Stri
     ng settings = null, bool pauseOnExit = null]) => _dummy(); |  | 
| 98 } |  | 
| 99 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 100 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 101 // BSD-style license that can be found in the LICENSE file. |  | 
| 102 |  | 
| 103 class _WebKitBlobBuilderFactoryProvider { |  | 
| 104   factory WebKitBlobBuilder() => _dummy(); |  | 
| 105 } |  | 
| 106 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 107 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 108 // BSD-style license that can be found in the LICENSE file. |  | 
| 109 |  | 
| 110 class _WebKitCSSMatrixFactoryProvider { |  | 
| 111   factory WebKitCSSMatrix([String cssValue = null]) => _dummy(); |  | 
| 112 } |  | 
| 113 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 114 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 115 // BSD-style license that can be found in the LICENSE file. |  | 
| 116 |  | 
| 117 class _WorkerFactoryProvider { |  | 
| 118   factory Worker(String scriptUrl) => _dummy(); |  | 
| 119 } |  | 
| 120 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 121 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 122 // BSD-style license that can be found in the LICENSE file. |  | 
| 123 |  | 
| 124 class _XMLHttpRequestFactoryProvider { |  | 
| 125   factory XMLHttpRequest() => _dummy(); |  | 
| 126 } |  | 
| 127 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 128 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 129 // BSD-style license that can be found in the LICENSE file. |  | 
| 130 |  | 
| 131 class _XMLSerializerFactoryProvider { |  | 
| 132   factory XMLSerializer() => _dummy(); |  | 
| 133 } |  | 
| 134 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 135 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 136 // BSD-style license that can be found in the LICENSE file. |  | 
| 137 |  | 
| 138 class _XPathEvaluatorFactoryProvider { |  | 
| 139   factory XPathEvaluator() => _dummy(); |  | 
| 140 } |  | 
| 141 // Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file |  | 
| 142 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 143 // BSD-style license that can be found in the LICENSE file. |  | 
| 144 |  | 
| 145 class _XSLTProcessorFactoryProvider { |  | 
| 146   factory XSLTProcessor() => _dummy(); |  | 
| 147 } |  | 
| OLD | NEW | 
|---|