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

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

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

Powered by Google App Engine
This is Rietveld 408576698