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

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

Issue 1019453002: IDL: Add [Custom=CallEpilogue] to eliminate CG special cases (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix after rebase Created 5 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
« no previous file with comments | « Source/core/css/MediaQueryList.idl ('k') | Source/core/frame/History.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/EventTarget.idl
diff --git a/Source/core/events/EventTarget.idl b/Source/core/events/EventTarget.idl
index b7279b3b81ab8dd3fc725b412b11831c66bfc1ed..94c0757ee857db49221f7a2042b166346921858a 100644
--- a/Source/core/events/EventTarget.idl
+++ b/Source/core/events/EventTarget.idl
@@ -30,7 +30,7 @@
// legacy content. http://crbug.com/353484
// FIXME: type should not be nullable.
// FIXME: capture should have a default value false.
- void addEventListener(optional DOMString? type, optional EventListener? listener, optional boolean capture);
- void removeEventListener(optional DOMString? type, optional EventListener? listener, optional boolean capture);
+ [Custom=CallEpilogue] void addEventListener(optional DOMString? type, optional EventListener? listener, optional boolean capture);
+ [Custom=CallEpilogue] void removeEventListener(optional DOMString? type, optional EventListener? listener, optional boolean capture);
[RaisesException] boolean dispatchEvent(Event event);
};
« no previous file with comments | « Source/core/css/MediaQueryList.idl ('k') | Source/core/frame/History.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698