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

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

Issue 10151002: Revert "Revert "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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/dom/idl/dart/dart.idl ('k') | lib/dom/src/frog_IDBKeyRangeFactoryProvider.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/src/dummy_FactoryProviders.dart
diff --git a/lib/dom/src/dummy_FactoryProviders.dart b/lib/dom/src/dummy_FactoryProviders.dart
index 2a8a0cb98e45e1eb2a064c5f2a78be7186391697..861b19a07b69e6d676664a297e5aad74d6b66db4 100644
--- a/lib/dom/src/dummy_FactoryProviders.dart
+++ b/lib/dom/src/dummy_FactoryProviders.dart
@@ -12,6 +12,15 @@ class _AudioContextFactoryProvider {
factory AudioContext() => _dummy();
}
+class _IDBKeyRangeFactoryProvider {
+
+ factory IDBKeyRange.only(/*IDBKey*/ value) => _dummy();
+ factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open]) => _dummy();
+ factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open]) => _dummy();
+ factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
+ [bool lowerOpen, bool upperOpen]) => _dummy();
+}
+
class _TypedArrayFactoryProvider {
factory Float32Array(int length) => _dummy();
« 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