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

Unified Diff: sdk/lib/html/src/dartium_FactoryProviders.dart

Issue 11419300: Dartifying dart:html type names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Incorporating review feedback. Created 8 years 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
Index: sdk/lib/html/src/dartium_FactoryProviders.dart
diff --git a/sdk/lib/html/src/dartium_FactoryProviders.dart b/sdk/lib/html/src/dartium_FactoryProviders.dart
index c0ac5b95a0adab8cfa6eb9476541b4b01251e2d3..e76e7d7da87302b691d3ad22dab39975bf3dde1f 100644
--- a/sdk/lib/html/src/dartium_FactoryProviders.dart
+++ b/sdk/lib/html/src/dartium_FactoryProviders.dart
@@ -4,25 +4,6 @@
part of html;
-class _IDBKeyRangeFactoryProvider {
-
- static IDBKeyRange createIDBKeyRange_only(/*IDBKey*/ value) =>
- IDBKeyRange.only_(value);
-
- static IDBKeyRange createIDBKeyRange_lowerBound(
- /*IDBKey*/ bound, [bool open = false]) =>
- IDBKeyRange.lowerBound_(bound, open);
-
- static IDBKeyRange createIDBKeyRange_upperBound(
- /*IDBKey*/ bound, [bool open = false]) =>
- IDBKeyRange.upperBound_(bound, open);
-
- static IDBKeyRange createIDBKeyRange_bound(
- /*IDBKey*/ lower, /*IDBKey*/ upper,
- [bool lowerOpen = false, bool upperOpen = false]) =>
- IDBKeyRange.bound_(lower, upper, lowerOpen, upperOpen);
-}
-
class _TypedArrayFactoryProvider {
static Float32Array createFloat32Array(int length) => _F32(length);
static Float32Array createFloat32Array_fromList(List<num> list) =>

Powered by Google App Engine
This is Rietveld 408576698