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

Unified Diff: Source/modules/indexeddb/IDBDatabase.idl

Issue 22581002: Use EventHandler type instead of EventListener for event handler attributes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « Source/modules/filesystem/FileWriter.idl ('k') | Source/modules/indexeddb/IDBOpenDBRequest.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBDatabase.idl
diff --git a/Source/modules/indexeddb/IDBDatabase.idl b/Source/modules/indexeddb/IDBDatabase.idl
index 49b6acf6b216ffd9a2d082322e932ad508b71bc8..3d81ed27ba40f8816de1e10b40258fd474421ec1 100644
--- a/Source/modules/indexeddb/IDBDatabase.idl
+++ b/Source/modules/indexeddb/IDBDatabase.idl
@@ -31,10 +31,10 @@
readonly attribute IDBAny version;
readonly attribute DOMStringList objectStoreNames;
- attribute EventListener onabort;
- attribute EventListener onclose;
- attribute EventListener onerror;
- attribute EventListener onversionchange;
+ attribute EventHandler onabort;
+ attribute EventHandler onclose;
+ attribute EventHandler onerror;
+ attribute EventHandler onversionchange;
[RaisesException] IDBObjectStore createObjectStore(DOMString name, optional Dictionary options);
[RaisesException] void deleteObjectStore(DOMString name);
« no previous file with comments | « Source/modules/filesystem/FileWriter.idl ('k') | Source/modules/indexeddb/IDBOpenDBRequest.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698