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

Unified Diff: Source/core/events/EventTarget.idl

Issue 203143002: Simplify EventTarget bindings generation (2) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
Index: Source/core/events/EventTarget.idl
diff --git a/Source/core/events/EventTarget.idl b/Source/core/events/EventTarget.idl
index 0cd1b1718f06791cc18bce0b16e8efaa30c59fdf..7febedfcedc843658d302a0918b9c8853da896d5 100644
--- a/Source/core/events/EventTarget.idl
+++ b/Source/core/events/EventTarget.idl
@@ -21,10 +21,10 @@
[
Custom=ToV8,
] interface EventTarget {
- void addEventListener(DOMString type,
+ void addEventListener([TreatNullAs=NullString] DOMString type,
haraken 2014/03/18 11:10:57 How is this change related to this CL?
Nils Barth (inactive) 2014/03/19 02:02:57 This was previously hard-coded, as: V8TRYCATCH_FOR
EventListener listener,
optional boolean useCapture);
- void removeEventListener(DOMString type,
+ void removeEventListener([TreatNullAs=NullString] DOMString type,
EventListener listener,
optional boolean useCapture);
[RaisesException] boolean dispatchEvent(Event event);

Powered by Google App Engine
This is Rietveld 408576698