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

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

Issue 10980015: Emit static IDL members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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/html/scripts/systemhtml.py ('k') | tests/html/html.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/dartium_FactoryProviders.dart
diff --git a/lib/html/src/dartium_FactoryProviders.dart b/lib/html/src/dartium_FactoryProviders.dart
index e85cfb89a1c47efc8c4c5db91adb11d8e9d4df9d..f31947a26d34900b83d056b397ba6c735471497a 100644
--- a/lib/html/src/dartium_FactoryProviders.dart
+++ b/lib/html/src/dartium_FactoryProviders.dart
@@ -13,20 +13,20 @@ class _AudioContextFactoryProvider {
class _IDBKeyRangeFactoryProvider {
static IDBKeyRange createIDBKeyRange_only(/*IDBKey*/ value) =>
- _IDBKeyRangeImpl.only(value);
+ _IDBKeyRangeImpl.only_(value);
static IDBKeyRange createIDBKeyRange_lowerBound(
/*IDBKey*/ bound, [bool open = false]) =>
- _IDBKeyRangeImpl.lowerBound(bound, open);
+ _IDBKeyRangeImpl.lowerBound_(bound, open);
static IDBKeyRange createIDBKeyRange_upperBound(
/*IDBKey*/ bound, [bool open = false]) =>
- _IDBKeyRangeImpl.upperBound(bound, open);
+ _IDBKeyRangeImpl.upperBound_(bound, open);
static IDBKeyRange createIDBKeyRange_bound(
/*IDBKey*/ lower, /*IDBKey*/ upper,
[bool lowerOpen = false, bool upperOpen = false]) =>
- _IDBKeyRangeImpl.bound(lower, upper, lowerOpen, upperOpen);
+ _IDBKeyRangeImpl.bound_(lower, upper, lowerOpen, upperOpen);
}
class _TypedArrayFactoryProvider {
« no previous file with comments | « lib/html/scripts/systemhtml.py ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698