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

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

Issue 1215893006: Add UseCounters for init*Event methods that aren't already measured (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/events/CompositionEvent.idl ('k') | Source/core/events/Event.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/CustomEvent.idl
diff --git a/Source/core/events/CustomEvent.idl b/Source/core/events/CustomEvent.idl
index 86aad716be09bf0dd42ccf8e3c2d79101a0e2495..4d4cb085c639989686d3f31d2cb996645c8f84df 100644
--- a/Source/core/events/CustomEvent.idl
+++ b/Source/core/events/CustomEvent.idl
@@ -32,8 +32,8 @@
[Custom=Getter] readonly attribute any detail;
// FIXME: initCustomEvent()'s arguments should not be optional.
- [Custom] void initCustomEvent([Default=Undefined] optional DOMString typeArg,
- [Default=Undefined] optional boolean canBubbleArg,
- [Default=Undefined] optional boolean cancelableArg,
- [Default=Undefined] optional any detailArg);
+ [Custom, Measure] void initCustomEvent([Default=Undefined] optional DOMString type,
+ [Default=Undefined] optional boolean bubbles,
+ [Default=Undefined] optional boolean cancelable,
+ [Default=Undefined] optional any detail);
};
« no previous file with comments | « Source/core/events/CompositionEvent.idl ('k') | Source/core/events/Event.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698