OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 class _AudioContextFactoryProvider { | 5 class _AudioContextFactoryProvider { |
6 factory AudioContext() => FactoryProviderImplementation.createAudioContext(); | 6 factory AudioContext() => FactoryProviderImplementation.createAudioContext(); |
7 } | 7 } |
8 | 8 |
9 class _DOMParserFactoryProvider { | 9 class _DOMParserFactoryProvider { |
10 factory DOMParser() => FactoryProviderImplementation.createDOMParser(); | 10 factory DOMParser() => FactoryProviderImplementation.createDOMParser(); |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 factory WebKitPoint(num x, num y) => FactoryProviderImplementation.createWebKi
tPoint(x, y); | 56 factory WebKitPoint(num x, num y) => FactoryProviderImplementation.createWebKi
tPoint(x, y); |
57 } | 57 } |
58 | 58 |
59 class _WebSocketFactoryProvider { | 59 class _WebSocketFactoryProvider { |
60 factory WebSocket(String url) => FactoryProviderImplementation.createWebSocket
(url); | 60 factory WebSocket(String url) => FactoryProviderImplementation.createWebSocket
(url); |
61 } | 61 } |
62 | 62 |
63 class _XMLHttpRequestFactoryProvider { | 63 class _XMLHttpRequestFactoryProvider { |
64 factory XMLHttpRequest() => FactoryProviderImplementation.createXMLHttpRequest
(); | 64 factory XMLHttpRequest() => FactoryProviderImplementation.createXMLHttpRequest
(); |
65 } | 65 } |
| 66 |
| 67 class _XSLTProcessorFactoryProvider { |
| 68 factory XSLTProcessor() => FactoryProviderImplementation.createXSLTProcessor()
; |
| 69 } |
OLD | NEW |