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

Unified Diff: client/dom/generated/src/wrapping/_SQLResultSetWrappingImplementation.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/_SQLResultSetWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_SQLResultSetWrappingImplementation.dart b/client/dom/generated/src/wrapping/_SQLResultSetWrappingImplementation.dart
index 96fbd54db8a392b2ee25db9cf1e90a8da77255d3..8034c19435cfccc803ba5379ee684bacec7202a1 100644
--- a/client/dom/generated/src/wrapping/_SQLResultSetWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_SQLResultSetWrappingImplementation.dart
@@ -11,14 +11,14 @@ class _SQLResultSetWrappingImplementation extends DOMWrapperBase implements SQLR
return new _SQLResultSetWrappingImplementation();
}
- int get insertId() { return _get__SQLResultSet_insertId(this); }
- static int _get__SQLResultSet_insertId(var _this) native;
+ int get insertId() { return _get_insertId(this); }
+ static int _get_insertId(var _this) native;
- SQLResultSetRowList get rows() { return _get__SQLResultSet_rows(this); }
- static SQLResultSetRowList _get__SQLResultSet_rows(var _this) native;
+ SQLResultSetRowList get rows() { return _get_rows(this); }
+ static SQLResultSetRowList _get_rows(var _this) native;
- int get rowsAffected() { return _get__SQLResultSet_rowsAffected(this); }
- static int _get__SQLResultSet_rowsAffected(var _this) native;
+ int get rowsAffected() { return _get_rowsAffected(this); }
+ static int _get_rowsAffected(var _this) native;
String get typeName() { return "SQLResultSet"; }
}

Powered by Google App Engine
This is Rietveld 408576698