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

Unified Diff: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart

Issue 22682004: Rerun go.sh (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 months 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
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/indexed_db/dartium/indexed_db_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
diff --git a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
index 8296329c88177d36d150c0144fdc810df622e45e..93045482e6dc1815c4eda7e0acbfd99ceca19577 100644
--- a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
+++ b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
@@ -361,6 +361,22 @@ class Database extends EventTarget native "IDBDatabase" {
@DocsEditable()
void deleteObjectStore(String name) native;
+ // From EventTarget
+
+ @JSName('addEventListener')
+ @DomName('IDBDatabase.addEventListener')
+ @DocsEditable()
+ void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native;
+
+ @DomName('IDBDatabase.dispatchEvent')
+ @DocsEditable()
+ bool dispatchEvent(Event event) native;
+
+ @JSName('removeEventListener')
+ @DomName('IDBDatabase.removeEventListener')
+ @DocsEditable()
+ void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]) native;
+
@DomName('IDBDatabase.onabort')
@DocsEditable()
Stream<Event> get onAbort => abortEvent.forTarget(this);
@@ -1147,6 +1163,22 @@ class Request extends EventTarget native "IDBRequest" {
@DocsEditable()
final Transaction transaction;
+ // From EventTarget
+
+ @JSName('addEventListener')
+ @DomName('IDBRequest.addEventListener')
+ @DocsEditable()
+ void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native;
+
+ @DomName('IDBRequest.dispatchEvent')
+ @DocsEditable()
+ bool dispatchEvent(Event event) native;
+
+ @JSName('removeEventListener')
+ @DomName('IDBRequest.removeEventListener')
+ @DocsEditable()
+ void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]) native;
+
@DomName('IDBRequest.onerror')
@DocsEditable()
Stream<Event> get onError => errorEvent.forTarget(this);
@@ -1224,6 +1256,22 @@ class Transaction extends EventTarget native "IDBTransaction" {
@DocsEditable()
ObjectStore objectStore(String name) native;
+ // From EventTarget
+
+ @JSName('addEventListener')
+ @DomName('IDBTransaction.addEventListener')
+ @DocsEditable()
+ void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native;
+
+ @DomName('IDBTransaction.dispatchEvent')
+ @DocsEditable()
+ bool dispatchEvent(Event event) native;
+
+ @JSName('removeEventListener')
+ @DomName('IDBTransaction.removeEventListener')
+ @DocsEditable()
+ void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]) native;
+
@DomName('IDBTransaction.onabort')
@DocsEditable()
Stream<Event> get onAbort => abortEvent.forTarget(this);
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/indexed_db/dartium/indexed_db_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698