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

Unified Diff: client/dom/src/dummy_FactoryProviders.dart

Issue 9845043: Rename client/{dom,html} to lib/{dom,html} . (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/dom/src/_XMLHttpRequestUtils.dart ('k') | client/dom/src/dummy_GlobalProperties.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/src/dummy_FactoryProviders.dart
===================================================================
--- client/dom/src/dummy_FactoryProviders.dart (revision 5796)
+++ client/dom/src/dummy_FactoryProviders.dart (working copy)
@@ -1,62 +0,0 @@
-// 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.
-
-
-_dummy() {
- throw const NotImplementedException();
-}
-
-class _AudioContextFactoryProvider {
-
- factory AudioContext() => _dummy();
-}
-
-class _TypedArrayFactoryProvider {
-
- factory Float32Array(int length) => _dummy();
- factory Float32Array.fromList(List<num> list) => _dummy();
- factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy();
-
- factory Float64Array(int length) => _dummy();
- factory Float64Array.fromList(List<num> list) => _dummy();
- factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy();
-
- factory Int8Array(int length) => _dummy();
- factory Int8Array.fromList(List<num> list) => _dummy();
- factory Int8Array.fromBuffer(ArrayBuffer buffer) => _dummy();
-
- factory Int16Array(int length) => _dummy();
- factory Int16Array.fromList(List<num> list) => _dummy();
- factory Int16Array.fromBuffer(ArrayBuffer buffer) => _dummy();
-
- factory Int32Array(int length) => _dummy();
- factory Int32Array.fromList(List<num> list) => _dummy();
- factory Int32Array.fromBuffer(ArrayBuffer buffer) => _dummy();
-
- factory Uint8Array(int length) => _dummy();
- factory Uint8Array.fromList(List<num> list) => _dummy();
- factory Uint8Array.fromBuffer(ArrayBuffer buffer) => _dummy();
-
- factory Uint16Array(int length) => _dummy();
- factory Uint16Array.fromList(List<num> list) => _dummy();
- factory Uint16Array.fromBuffer(ArrayBuffer buffer) => _dummy();
-
- factory Uint32Array(int length) => _dummy();
- factory Uint32Array.fromList(List<num> list) => _dummy();
- factory Uint32Array.fromBuffer(ArrayBuffer buffer) => _dummy();
-
- factory Uint8ClampedArray(int length) => _dummy();
- factory Uint8ClampedArray.fromList(List<num> list) => _dummy();
- factory Uint8ClampedArray.fromBuffer(ArrayBuffer buffer) => _dummy();
-}
-
-class _WebKitPointFactoryProvider {
-
- factory WebKitPoint(num x, num y) => _dummy();
-}
-
-class _WebSocketFactoryProvider {
-
- factory WebSocket(String url) => _dummy();
-}
« no previous file with comments | « client/dom/src/_XMLHttpRequestUtils.dart ('k') | client/dom/src/dummy_GlobalProperties.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698