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

Unified Diff: client/dom/generated/src/wrapping/_IDBDatabaseErrorWrappingImplementation.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/_IDBDatabaseErrorWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBDatabaseErrorWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBDatabaseErrorWrappingImplementation.dart
index fadd51bd36d8e380179c88e1978d1f1debb700c9..ecc6f47e11abdb86d763c4b26c76016229fd6505 100644
--- a/client/dom/generated/src/wrapping/_IDBDatabaseErrorWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBDatabaseErrorWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _IDBDatabaseErrorWrappingImplementation extends DOMWrapperBase implements
return new _IDBDatabaseErrorWrappingImplementation();
}
- int get code() { return _get__IDBDatabaseError_code(this); }
- static int _get__IDBDatabaseError_code(var _this) native;
+ int get code() { return _get_code(this); }
+ static int _get_code(var _this) native;
- void set code(int value) { _set__IDBDatabaseError_code(this, value); }
- static void _set__IDBDatabaseError_code(var _this, int value) native;
+ void set code(int value) { _set_code(this, value); }
+ static void _set_code(var _this, int value) native;
- String get message() { return _get__IDBDatabaseError_message(this); }
- static String _get__IDBDatabaseError_message(var _this) native;
+ String get message() { return _get_message(this); }
+ static String _get_message(var _this) native;
- void set message(String value) { _set__IDBDatabaseError_message(this, value); }
- static void _set__IDBDatabaseError_message(var _this, String value) native;
+ void set message(String value) { _set_message(this, value); }
+ static void _set_message(var _this, String value) native;
String get typeName() { return "IDBDatabaseError"; }
}

Powered by Google App Engine
This is Rietveld 408576698