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

Unified Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart

Issue 283043003: Suppress cloning EventTarget methods in subtypes when using blink (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regen Created 6 years, 7 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/svg/dartium/svg_dartium.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 bd628f6edd8d78b79e5c7239d93fa390e57d38bf..c39811ef682542d37088e2928f9944afef33a2a1 100644
--- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
+++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
@@ -252,18 +252,6 @@ class Database extends EventTarget {
@DocsEditable()
Transaction transactionStores(List<String> storeNames, String mode) => _blink.Native_IDBDatabase_transactionStores_Callback(this, storeNames, mode);
- @DomName('IDBDatabase.addEventListener')
- @DocsEditable()
- void addEventListener(String type, EventListener listener, [bool useCapture]) => _blink.Native_IDBDatabase_addEventListener_Callback(this, type, listener, useCapture);
-
- @DomName('IDBDatabase.dispatchEvent')
- @DocsEditable()
- bool dispatchEvent(Event event) => _blink.Native_IDBDatabase_dispatchEvent_Callback(this, event);
-
- @DomName('IDBDatabase.removeEventListener')
- @DocsEditable()
- void removeEventListener(String type, EventListener listener, [bool useCapture]) => _blink.Native_IDBDatabase_removeEventListener_Callback(this, type, listener, useCapture);
-
/// Stream of `abort` events handled by this [Database].
@DomName('IDBDatabase.onabort')
@DocsEditable()
@@ -942,18 +930,6 @@ class Request extends EventTarget {
@DocsEditable()
Transaction get transaction => _blink.Native_IDBRequest_transaction_Getter(this);
- @DomName('IDBRequest.addEventListener')
- @DocsEditable()
- void addEventListener(String type, EventListener listener, [bool useCapture]) => _blink.Native_IDBRequest_addEventListener_Callback(this, type, listener, useCapture);
-
- @DomName('IDBRequest.dispatchEvent')
- @DocsEditable()
- bool dispatchEvent(Event event) => _blink.Native_IDBRequest_dispatchEvent_Callback(this, event);
-
- @DomName('IDBRequest.removeEventListener')
- @DocsEditable()
- void removeEventListener(String type, EventListener listener, [bool useCapture]) => _blink.Native_IDBRequest_removeEventListener_Callback(this, type, listener, useCapture);
-
/// Stream of `error` events handled by this [Request].
@DomName('IDBRequest.onerror')
@DocsEditable()
@@ -1055,18 +1031,6 @@ class Transaction extends EventTarget {
@DocsEditable()
ObjectStore objectStore(String name) => _blink.Native_IDBTransaction_objectStore_Callback(this, name);
- @DomName('IDBTransaction.addEventListener')
- @DocsEditable()
- void addEventListener(String type, EventListener listener, [bool useCapture]) => _blink.Native_IDBTransaction_addEventListener_Callback(this, type, listener, useCapture);
-
- @DomName('IDBTransaction.dispatchEvent')
- @DocsEditable()
- bool dispatchEvent(Event event) => _blink.Native_IDBTransaction_dispatchEvent_Callback(this, event);
-
- @DomName('IDBTransaction.removeEventListener')
- @DocsEditable()
- void removeEventListener(String type, EventListener listener, [bool useCapture]) => _blink.Native_IDBTransaction_removeEventListener_Callback(this, type, listener, useCapture);
-
/// Stream of `abort` events handled by this [Transaction].
@DomName('IDBTransaction.onabort')
@DocsEditable()
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698