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

Unified Diff: client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 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: client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
index aaae031b95333ec31c200997f81036f9945d9361..791e140ce8470d55f5039c394a407cf11556aa12 100644
--- a/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKe
return new _IDBKeyRangeWrappingImplementation();
}
- IDBKey get lower() { return _get__IDBKeyRange_lower(this); }
- static IDBKey _get__IDBKeyRange_lower(var _this) native;
+ IDBKey get lower() { return _get_lower(this); }
+ static IDBKey _get_lower(var _this) native;
- bool get lowerOpen() { return _get__IDBKeyRange_lowerOpen(this); }
- static bool _get__IDBKeyRange_lowerOpen(var _this) native;
+ bool get lowerOpen() { return _get_lowerOpen(this); }
+ static bool _get_lowerOpen(var _this) native;
- IDBKey get upper() { return _get__IDBKeyRange_upper(this); }
- static IDBKey _get__IDBKeyRange_upper(var _this) native;
+ IDBKey get upper() { return _get_upper(this); }
+ static IDBKey _get_upper(var _this) native;
- bool get upperOpen() { return _get__IDBKeyRange_upperOpen(this); }
- static bool _get__IDBKeyRange_upperOpen(var _this) native;
+ bool get upperOpen() { return _get_upperOpen(this); }
+ static bool _get_upperOpen(var _this) native;
IDBKeyRange bound(IDBKey lower, IDBKey upper, [bool lowerOpen = null, bool upperOpen = null]) {
if (lowerOpen === null) {

Powered by Google App Engine
This is Rietveld 408576698