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

Unified Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.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/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
diff --git a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
index 19cac75fdd76ef80bd88b856eee2309d6494b59f..dc31713be9247eb3862ff0709682839ebc88e344 100644
--- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
+++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
@@ -218,6 +218,18 @@ class Database extends EventTarget {
@DocsEditable()
Transaction transactionStores(List<String> storeNames, String mode) native "IDBDatabase_transactionStores_Callback";
+ @DomName('IDBDatabase.addEventListener')
+ @DocsEditable()
+ void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "IDBDatabase_addEventListener_Callback";
+
+ @DomName('IDBDatabase.dispatchEvent')
+ @DocsEditable()
+ bool dispatchEvent(Event event) native "IDBDatabase_dispatchEvent_Callback";
+
+ @DomName('IDBDatabase.removeEventListener')
+ @DocsEditable()
+ void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]) native "IDBDatabase_removeEventListener_Callback";
+
@DomName('IDBDatabase.onabort')
@DocsEditable()
Stream<Event> get onAbort => abortEvent.forTarget(this);
@@ -980,6 +992,18 @@ class Request extends EventTarget {
@DocsEditable()
Transaction get transaction native "IDBRequest_transaction_Getter";
+ @DomName('IDBRequest.addEventListener')
+ @DocsEditable()
+ void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "IDBRequest_addEventListener_Callback";
+
+ @DomName('IDBRequest.dispatchEvent')
+ @DocsEditable()
+ bool dispatchEvent(Event event) native "IDBRequest_dispatchEvent_Callback";
+
+ @DomName('IDBRequest.removeEventListener')
+ @DocsEditable()
+ void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]) native "IDBRequest_removeEventListener_Callback";
+
@DomName('IDBRequest.onerror')
@DocsEditable()
Stream<Event> get onError => errorEvent.forTarget(this);
@@ -1058,6 +1082,18 @@ class Transaction extends EventTarget {
@DocsEditable()
ObjectStore objectStore(String name) native "IDBTransaction_objectStore_Callback";
+ @DomName('IDBTransaction.addEventListener')
+ @DocsEditable()
+ void $dom_addEventListener(String type, EventListener listener, [bool useCapture]) native "IDBTransaction_addEventListener_Callback";
+
+ @DomName('IDBTransaction.dispatchEvent')
+ @DocsEditable()
+ bool dispatchEvent(Event event) native "IDBTransaction_dispatchEvent_Callback";
+
+ @DomName('IDBTransaction.removeEventListener')
+ @DocsEditable()
+ void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]) native "IDBTransaction_removeEventListener_Callback";
+
@DomName('IDBTransaction.onabort')
@DocsEditable()
Stream<Event> get onAbort => abortEvent.forTarget(this);
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | sdk/lib/svg/dart2js/svg_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698