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

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

Issue 10142001: Revert "Constructors for IDBKeyRange" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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
« no previous file with comments | « lib/dom/idl/dart/dart.idl ('k') | lib/dom/src/frog_IDBKeyRangeFactoryProvider.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
11 11
12 factory AudioContext() => _dummy(); 12 factory AudioContext() => _dummy();
13 } 13 }
14 14
15 class _IDBKeyRangeFactoryProvider {
16
17 factory IDBKeyRange.only(/*IDBKey*/ value) => _dummy();
18 factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open]) => _dummy();
19 factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open]) => _dummy();
20 factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
21 [bool lowerOpen, bool upperOpen]) => _dummy();
22 }
23
24 class _TypedArrayFactoryProvider { 15 class _TypedArrayFactoryProvider {
25 16
26 factory Float32Array(int length) => _dummy(); 17 factory Float32Array(int length) => _dummy();
27 factory Float32Array.fromList(List<num> list) => _dummy(); 18 factory Float32Array.fromList(List<num> list) => _dummy();
28 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy(); 19 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy();
29 20
30 factory Float64Array(int length) => _dummy(); 21 factory Float64Array(int length) => _dummy();
31 factory Float64Array.fromList(List<num> list) => _dummy(); 22 factory Float64Array.fromList(List<num> list) => _dummy();
32 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy(); 23 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy();
33 24
(...skipping 28 matching lines...) Expand all
62 53
63 class _WebKitPointFactoryProvider { 54 class _WebKitPointFactoryProvider {
64 55
65 factory WebKitPoint(num x, num y) => _dummy(); 56 factory WebKitPoint(num x, num y) => _dummy();
66 } 57 }
67 58
68 class _WebSocketFactoryProvider { 59 class _WebSocketFactoryProvider {
69 60
70 factory WebSocket(String url) => _dummy(); 61 factory WebSocket(String url) => _dummy();
71 } 62 }
OLDNEW
« no previous file with comments | « lib/dom/idl/dart/dart.idl ('k') | lib/dom/src/frog_IDBKeyRangeFactoryProvider.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698