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

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

Issue 2380383003: Use sequence<T> instead of T[] where possible and document exceptions (Closed)
Patch Set: address feedback Created 4 years, 2 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 unified diff | Download patch
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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 // https://dom.spec.whatwg.org/#interface-event 21 // https://dom.spec.whatwg.org/#interface-event
22 22
23 [ 23 [
24 Constructor(DOMString type, optional EventInit eventInitDict), 24 Constructor(DOMString type, optional EventInit eventInitDict),
25 Exposed=(Window,Worker), 25 Exposed=(Window,Worker),
26 ] interface Event { 26 ] interface Event {
27 readonly attribute DOMString type; 27 readonly attribute DOMString type;
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 31
31 const unsigned short NONE = 0; 32 const unsigned short NONE = 0;
32 const unsigned short CAPTURING_PHASE = 1; 33 const unsigned short CAPTURING_PHASE = 1;
33 const unsigned short AT_TARGET = 2; 34 const unsigned short AT_TARGET = 2;
34 const unsigned short BUBBLING_PHASE = 3; 35 const unsigned short BUBBLING_PHASE = 3;
35 readonly attribute unsigned short eventPhase; 36 readonly attribute unsigned short eventPhase;
36 37
37 void stopPropagation(); 38 void stopPropagation();
38 void stopImmediatePropagation(); 39 void stopImmediatePropagation();
39 40
40 readonly attribute boolean bubbles; 41 readonly attribute boolean bubbles;
41 readonly attribute boolean cancelable; 42 readonly attribute boolean cancelable;
42 void preventDefault(); 43 void preventDefault();
43 readonly attribute boolean defaultPrevented; 44 readonly attribute boolean defaultPrevented;
44 45
45 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventComposed] readonly attribute boo lean composed; 46 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventComposed] readonly attribute boo lean composed;
46 47
47 [Unforgeable] readonly attribute boolean isTrusted; 48 [Unforgeable] readonly attribute boolean isTrusted;
48 49
49 [CallWith=ScriptState] readonly attribute DOMHighResTimeStamp timeStamp; 50 [CallWith=ScriptState] readonly attribute DOMHighResTimeStamp timeStamp;
50 51
51 // FIXME: initEvent()'s arguments should not be optional. 52 // FIXME: initEvent()'s arguments should not be optional.
52 [Measure] void initEvent([Default=Undefined] optional DOMString type, 53 [Measure] void initEvent([Default=Undefined] optional DOMString type,
53 [Default=Undefined] optional boolean bubbles, 54 [Default=Undefined] optional boolean bubbles,
54 [Default=Undefined] optional boolean cancelable); 55 [Default=Undefined] optional boolean cancelable);
55 56
56 // Shadow DOM
57 // https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-event-inte rface
58 [MeasureAs=EventPath, CallWith=ScriptState] readonly attribute EventTarget[] path;
59 [RuntimeEnabled=ShadowDOMV1, MeasureAs=EventComposedPath, CallWith=ScriptSta te] sequence<EventTarget> composedPath();
60
61 // Non-standard APIs 57 // Non-standard APIs
62 const unsigned short MOUSEDOWN = 1; 58 const unsigned short MOUSEDOWN = 1;
63 const unsigned short MOUSEUP = 2; 59 const unsigned short MOUSEUP = 2;
64 const unsigned short MOUSEOVER = 4; 60 const unsigned short MOUSEOVER = 4;
65 const unsigned short MOUSEOUT = 8; 61 const unsigned short MOUSEOUT = 8;
66 const unsigned short MOUSEMOVE = 16; 62 const unsigned short MOUSEMOVE = 16;
67 const unsigned short MOUSEDRAG = 32; 63 const unsigned short MOUSEDRAG = 32;
68 const unsigned short CLICK = 64; 64 const unsigned short CLICK = 64;
69 const unsigned short DBLCLICK = 128; 65 const unsigned short DBLCLICK = 128;
70 const unsigned short KEYDOWN = 256; 66 const unsigned short KEYDOWN = 256;
71 const unsigned short KEYUP = 512; 67 const unsigned short KEYUP = 512;
72 const unsigned short KEYPRESS = 1024; 68 const unsigned short KEYPRESS = 1024;
73 const unsigned short DRAGDROP = 2048; 69 const unsigned short DRAGDROP = 2048;
74 const unsigned short FOCUS = 4096; 70 const unsigned short FOCUS = 4096;
75 const unsigned short BLUR = 8192; 71 const unsigned short BLUR = 8192;
76 const unsigned short SELECT = 16384; 72 const unsigned short SELECT = 16384;
77 const unsigned short CHANGE = 32768; 73 const unsigned short CHANGE = 32768;
78 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; 74 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement;
79 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue; 75 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue;
80 [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;
81 }; 78 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/CompositorProxy.idl ('k') | third_party/WebKit/Source/core/events/MessageEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698