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

Side by Side Diff: lib/dom/dom.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 | « client/tests/client/client.status ('k') | lib/dom/frog/dom_frog.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 #library('dom'); 1 #library('dom');
2 2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library with no implementation. 8 // Auto-generated Dart DOM library with no implementation.
9 9
10 10
(...skipping 5174 matching lines...) Expand 10 before | Expand all | Expand 10 after
5185 // WARNING: Do not edit - generated code. 5185 // WARNING: Do not edit - generated code.
5186 5186
5187 interface IDBKey { 5187 interface IDBKey {
5188 } 5188 }
5189 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5189 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5190 // for details. All rights reserved. Use of this source code is governed by a 5190 // for details. All rights reserved. Use of this source code is governed by a
5191 // BSD-style license that can be found in the LICENSE file. 5191 // BSD-style license that can be found in the LICENSE file.
5192 5192
5193 // WARNING: Do not edit - generated code. 5193 // WARNING: Do not edit - generated code.
5194 5194
5195 interface IDBKeyRange default _IDBKeyRangeFactoryProvider { 5195 interface IDBKeyRange {
5196
5197 IDBKeyRange.only(/*IDBKey*/ value);
5198
5199 IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open]);
5200
5201 IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open]);
5202
5203 IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
5204 [bool lowerOpen, bool upperOpen]);
5205
5206 5196
5207 final /*IDBKey*/ lower; 5197 final /*IDBKey*/ lower;
5208 5198
5209 final bool lowerOpen; 5199 final bool lowerOpen;
5210 5200
5211 final /*IDBKey*/ upper; 5201 final /*IDBKey*/ upper;
5212 5202
5213 final bool upperOpen; 5203 final bool upperOpen;
5204
5205 IDBKeyRange bound(/*IDBKey*/ lower, /*IDBKey*/ upper, [bool lowerOpen, bool up perOpen]);
5206
5207 IDBKeyRange lowerBound(/*IDBKey*/ bound, [bool open]);
5208
5209 IDBKeyRange only(/*IDBKey*/ value);
5210
5211 IDBKeyRange upperBound(/*IDBKey*/ bound, [bool open]);
5214 } 5212 }
5215 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5213 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5216 // for details. All rights reserved. Use of this source code is governed by a 5214 // for details. All rights reserved. Use of this source code is governed by a
5217 // BSD-style license that can be found in the LICENSE file. 5215 // BSD-style license that can be found in the LICENSE file.
5218 5216
5219 // WARNING: Do not edit - generated code. 5217 // WARNING: Do not edit - generated code.
5220 5218
5221 interface IDBObjectStore { 5219 interface IDBObjectStore {
5222 5220
5223 final List<String> indexNames; 5221 final List<String> indexNames;
(...skipping 7629 matching lines...) Expand 10 before | Expand all | Expand 10 after
12853 12851
12854 _dummy() { 12852 _dummy() {
12855 throw const NotImplementedException(); 12853 throw const NotImplementedException();
12856 } 12854 }
12857 12855
12858 class _AudioContextFactoryProvider { 12856 class _AudioContextFactoryProvider {
12859 12857
12860 factory AudioContext() => _dummy(); 12858 factory AudioContext() => _dummy();
12861 } 12859 }
12862 12860
12863 class _IDBKeyRangeFactoryProvider {
12864
12865 factory IDBKeyRange.only(/*IDBKey*/ value) => _dummy();
12866 factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open]) => _dummy();
12867 factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open]) => _dummy();
12868 factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
12869 [bool lowerOpen, bool upperOpen]) => _dummy();
12870 }
12871
12872 class _TypedArrayFactoryProvider { 12861 class _TypedArrayFactoryProvider {
12873 12862
12874 factory Float32Array(int length) => _dummy(); 12863 factory Float32Array(int length) => _dummy();
12875 factory Float32Array.fromList(List<num> list) => _dummy(); 12864 factory Float32Array.fromList(List<num> list) => _dummy();
12876 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy(); 12865 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy();
12877 12866
12878 factory Float64Array(int length) => _dummy(); 12867 factory Float64Array(int length) => _dummy();
12879 factory Float64Array.fromList(List<num> list) => _dummy(); 12868 factory Float64Array.fromList(List<num> list) => _dummy();
12880 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy(); 12869 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy();
12881 12870
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
12920 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12909 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12921 // for details. All rights reserved. Use of this source code is governed by a 12910 // for details. All rights reserved. Use of this source code is governed by a
12922 // BSD-style license that can be found in the LICENSE file. 12911 // BSD-style license that can be found in the LICENSE file.
12923 12912
12924 Window get window() => _dummy(); 12913 Window get window() => _dummy();
12925 12914
12926 // TODO(vsm): Remove when prefixes are supported. 12915 // TODO(vsm): Remove when prefixes are supported.
12927 Window get dom_window() => _dummy(); 12916 Window get dom_window() => _dummy();
12928 12917
12929 Document get document() => _dummy(); 12918 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « client/tests/client/client.status ('k') | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698