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

Side by Side Diff: third_party/WebKit/Source/core/events/Event.idl

Issue 2501523003: Add UseCounter on Event::stop{Immediate,}Propagation(). (Closed)
Patch Set: measure stop propagation too Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 17 matching lines...) Expand all
28 readonly attribute EventTarget? target; 28 readonly attribute EventTarget? target;
29 readonly attribute EventTarget? currentTarget; 29 readonly attribute EventTarget? currentTarget;
30 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventComposedPath, CallWith=ScriptSta te] sequence<EventTarget> composedPath(); 30 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventComposedPath, CallWith=ScriptSta te] sequence<EventTarget> composedPath();
31 31
32 const unsigned short NONE = 0; 32 const unsigned short NONE = 0;
33 const unsigned short CAPTURING_PHASE = 1; 33 const unsigned short CAPTURING_PHASE = 1;
34 const unsigned short AT_TARGET = 2; 34 const unsigned short AT_TARGET = 2;
35 const unsigned short BUBBLING_PHASE = 3; 35 const unsigned short BUBBLING_PHASE = 3;
36 readonly attribute unsigned short eventPhase; 36 readonly attribute unsigned short eventPhase;
37 37
38 void stopPropagation(); 38 [Measure] void stopPropagation();
39 void stopImmediatePropagation(); 39 [Measure] void stopImmediatePropagation();
40 40
41 readonly attribute boolean bubbles; 41 readonly attribute boolean bubbles;
42 readonly attribute boolean cancelable; 42 readonly attribute boolean cancelable;
43 void preventDefault(); 43 void preventDefault();
44 readonly attribute boolean defaultPrevented; 44 readonly attribute boolean defaultPrevented;
45 45
46 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventComposed] readonly attribute boo lean composed; 46 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventComposed] readonly attribute boo lean composed;
47 47
48 [Unforgeable] readonly attribute boolean isTrusted; 48 [Unforgeable] readonly attribute boolean isTrusted;
49 49
(...skipping 19 matching lines...) Expand all
69 const unsigned short DRAGDROP = 2048; 69 const unsigned short DRAGDROP = 2048;
70 const unsigned short FOCUS = 4096; 70 const unsigned short FOCUS = 4096;
71 const unsigned short BLUR = 8192; 71 const unsigned short BLUR = 8192;
72 const unsigned short SELECT = 16384; 72 const unsigned short SELECT = 16384;
73 const unsigned short CHANGE = 32768; 73 const unsigned short CHANGE = 32768;
74 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; 74 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement;
75 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue; 75 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue;
76 [MeasureAs=EventCancelBubble, CallWith=ExecutionContext] attribute boolean c ancelBubble; 76 [MeasureAs=EventCancelBubble, CallWith=ExecutionContext] attribute boolean c ancelBubble;
77 [MeasureAs=EventPath, CallWith=ScriptState] readonly attribute EventTarget[] path; 77 [MeasureAs=EventPath, CallWith=ScriptState] readonly attribute EventTarget[] path;
78 }; 78 };
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698