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

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

Issue 11365019: Merging dart:html interfaces and implementations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing merged classes in dartium not compiling under dartc. Created 8 years, 1 month 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 f31947a26d34900b83d056b397ba6c735471497a..0678689616adb14b7725447797209f93f0e37812 100644
--- a/sdk/lib/html/src/dartium_FactoryProviders.dart
+++ b/sdk/lib/html/src/dartium_FactoryProviders.dart
@@ -13,20 +13,20 @@ class _AudioContextFactoryProvider {
class _IDBKeyRangeFactoryProvider {
static IDBKeyRange createIDBKeyRange_only(/*IDBKey*/ value) =>
- _IDBKeyRangeImpl.only_(value);
+ IDBKeyRange.only_(value);
static IDBKeyRange createIDBKeyRange_lowerBound(
/*IDBKey*/ bound, [bool open = false]) =>
- _IDBKeyRangeImpl.lowerBound_(bound, open);
+ IDBKeyRange.lowerBound_(bound, open);
static IDBKeyRange createIDBKeyRange_upperBound(
/*IDBKey*/ bound, [bool open = false]) =>
- _IDBKeyRangeImpl.upperBound_(bound, open);
+ IDBKeyRange.upperBound_(bound, open);
static IDBKeyRange createIDBKeyRange_bound(
/*IDBKey*/ lower, /*IDBKey*/ upper,
[bool lowerOpen = false, bool upperOpen = false]) =>
- _IDBKeyRangeImpl.bound_(lower, upper, lowerOpen, upperOpen);
+ IDBKeyRange.bound_(lower, upper, lowerOpen, upperOpen);
}
class _TypedArrayFactoryProvider {
@@ -108,5 +108,5 @@ class _WebSocketFactoryProvider {
}
class _TextFactoryProvider {
- static Text createText(String data) => _document.$dom_createTextNode(data);
+ static Text createText(String data) => document.$dom_createTextNode(data);
}
« no previous file with comments | « sdk/lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart ('k') | sdk/lib/html/src/native_DOMImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698