Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Side by Side Diff: client/dom/src/dummy_FactoryProviders.dart

Issue 9391029: Add XSLTProcessor constructor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 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 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 5
6 _dummy() { 6 _dummy() {
7 throw const NotImplementedException(); 7 throw const NotImplementedException();
8 } 8 }
9 9
10 class _AudioContextFactoryProvider { 10 class _AudioContextFactoryProvider {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 class _WebSocketFactoryProvider { 74 class _WebSocketFactoryProvider {
75 75
76 factory WebSocket(String url) => _dummy(); 76 factory WebSocket(String url) => _dummy();
77 } 77 }
78 78
79 class _XMLHttpRequestFactoryProvider { 79 class _XMLHttpRequestFactoryProvider {
80 80
81 factory XMLHttpRequest() => _dummy(); 81 factory XMLHttpRequest() => _dummy();
82 } 82 }
83
84 class _XSLTProcessorFactoryProvider {
85
86 factory XSLTProcessor() => _dummy();
87 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/XSLTProcessor.dart ('k') | client/dom/src/frog_FactoryProviders.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698