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

Unified Diff: client/dom/generated/src/wrapping/_IDBRequestWrappingImplementation.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/_IDBRequestWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBRequestWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBRequestWrappingImplementation.dart
index 387f462bfd556ce7d49c918120cca678d043b776..2ab118ebc4d37b10417e8b7808253b56bd46f637 100644
--- a/client/dom/generated/src/wrapping/_IDBRequestWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBRequestWrappingImplementation.dart
@@ -11,35 +11,35 @@ class _IDBRequestWrappingImplementation extends DOMWrapperBase implements IDBReq
return new _IDBRequestWrappingImplementation();
}
- int get errorCode() { return _get__IDBRequest_errorCode(this); }
- static int _get__IDBRequest_errorCode(var _this) native;
+ int get errorCode() { return _get_errorCode(this); }
+ static int _get_errorCode(var _this) native;
- EventListener get onerror() { return _get__IDBRequest_onerror(this); }
- static EventListener _get__IDBRequest_onerror(var _this) native;
+ EventListener get onerror() { return _get_onerror(this); }
+ static EventListener _get_onerror(var _this) native;
- void set onerror(EventListener value) { _set__IDBRequest_onerror(this, value); }
- static void _set__IDBRequest_onerror(var _this, EventListener value) native;
+ void set onerror(EventListener value) { _set_onerror(this, value); }
+ static void _set_onerror(var _this, EventListener value) native;
- EventListener get onsuccess() { return _get__IDBRequest_onsuccess(this); }
- static EventListener _get__IDBRequest_onsuccess(var _this) native;
+ EventListener get onsuccess() { return _get_onsuccess(this); }
+ static EventListener _get_onsuccess(var _this) native;
- void set onsuccess(EventListener value) { _set__IDBRequest_onsuccess(this, value); }
- static void _set__IDBRequest_onsuccess(var _this, EventListener value) native;
+ void set onsuccess(EventListener value) { _set_onsuccess(this, value); }
+ static void _set_onsuccess(var _this, EventListener value) native;
- int get readyState() { return _get__IDBRequest_readyState(this); }
- static int _get__IDBRequest_readyState(var _this) native;
+ int get readyState() { return _get_readyState(this); }
+ static int _get_readyState(var _this) native;
- IDBAny get result() { return _get__IDBRequest_result(this); }
- static IDBAny _get__IDBRequest_result(var _this) native;
+ IDBAny get result() { return _get_result(this); }
+ static IDBAny _get_result(var _this) native;
- IDBAny get source() { return _get__IDBRequest_source(this); }
- static IDBAny _get__IDBRequest_source(var _this) native;
+ IDBAny get source() { return _get_source(this); }
+ static IDBAny _get_source(var _this) native;
- IDBTransaction get transaction() { return _get__IDBRequest_transaction(this); }
- static IDBTransaction _get__IDBRequest_transaction(var _this) native;
+ IDBTransaction get transaction() { return _get_transaction(this); }
+ static IDBTransaction _get_transaction(var _this) native;
- String get webkitErrorMessage() { return _get__IDBRequest_webkitErrorMessage(this); }
- static String _get__IDBRequest_webkitErrorMessage(var _this) native;
+ String get webkitErrorMessage() { return _get_webkitErrorMessage(this); }
+ static String _get_webkitErrorMessage(var _this) native;
void addEventListener(String type, EventListener listener, [bool useCapture = null]) {
if (useCapture === null) {

Powered by Google App Engine
This is Rietveld 408576698