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

Unified Diff: client/dom/generated/src/wrapping/_IDBCursorWrappingImplementation.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/_IDBCursorWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBCursorWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBCursorWrappingImplementation.dart
index b9e9fa48db9d8ecae6aed2a1e8f3cb307fd76e17..c67760da1565bf7cb021d8191af136694731fb54 100644
--- a/client/dom/generated/src/wrapping/_IDBCursorWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBCursorWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _IDBCursorWrappingImplementation extends DOMWrapperBase implements IDBCurs
return new _IDBCursorWrappingImplementation();
}
- int get direction() { return _get__IDBCursor_direction(this); }
- static int _get__IDBCursor_direction(var _this) native;
+ int get direction() { return _get_direction(this); }
+ static int _get_direction(var _this) native;
- IDBKey get key() { return _get__IDBCursor_key(this); }
- static IDBKey _get__IDBCursor_key(var _this) native;
+ IDBKey get key() { return _get_key(this); }
+ static IDBKey _get_key(var _this) native;
- IDBKey get primaryKey() { return _get__IDBCursor_primaryKey(this); }
- static IDBKey _get__IDBCursor_primaryKey(var _this) native;
+ IDBKey get primaryKey() { return _get_primaryKey(this); }
+ static IDBKey _get_primaryKey(var _this) native;
- IDBAny get source() { return _get__IDBCursor_source(this); }
- static IDBAny _get__IDBCursor_source(var _this) native;
+ IDBAny get source() { return _get_source(this); }
+ static IDBAny _get_source(var _this) native;
void continueFunction([IDBKey key = null]) {
if (key === null) {

Powered by Google App Engine
This is Rietveld 408576698