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

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

Issue 10128001: Constructors for IDBKeyRange (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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
15 class _TypedArrayFactoryProvider { 24 class _TypedArrayFactoryProvider {
16 25
17 factory Float32Array(int length) => _dummy(); 26 factory Float32Array(int length) => _dummy();
18 factory Float32Array.fromList(List<num> list) => _dummy(); 27 factory Float32Array.fromList(List<num> list) => _dummy();
19 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy(); 28 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy();
20 29
21 factory Float64Array(int length) => _dummy(); 30 factory Float64Array(int length) => _dummy();
22 factory Float64Array.fromList(List<num> list) => _dummy(); 31 factory Float64Array.fromList(List<num> list) => _dummy();
23 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy(); 32 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy();
24 33
(...skipping 28 matching lines...) Expand all
53 62
54 class _WebKitPointFactoryProvider { 63 class _WebKitPointFactoryProvider {
55 64
56 factory WebKitPoint(num x, num y) => _dummy(); 65 factory WebKitPoint(num x, num y) => _dummy();
57 } 66 }
58 67
59 class _WebSocketFactoryProvider { 68 class _WebSocketFactoryProvider {
60 69
61 factory WebSocket(String url) => _dummy(); 70 factory WebSocket(String url) => _dummy();
62 } 71 }
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