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

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

Issue 1352523002: Use high precision timestamp for Event.timestamp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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,
(...skipping 26 matching lines...) Expand all
37 37
38 void stopPropagation(); 38 void stopPropagation();
39 void stopImmediatePropagation(); 39 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=TrustedEvents, Unforgeable] readonly attribute boolean isTru sted; 46 [RuntimeEnabled=TrustedEvents, Unforgeable] readonly attribute boolean isTru sted;
47 readonly attribute DOMTimeStamp timeStamp; 47 [CallWith=ScriptState] readonly attribute DOMHighResTimeStamp timeStamp;
Rick Byers 2015/09/25 17:29:33 Add a TODO here about the return type - mentioning
48 48
49 // FIXME: initEvent()'s arguments should not be optional. 49 // FIXME: initEvent()'s arguments should not be optional.
50 [Measure] void initEvent([Default=Undefined] optional DOMString type, 50 [Measure] void initEvent([Default=Undefined] optional DOMString type,
51 [Default=Undefined] optional boolean bubbles, 51 [Default=Undefined] optional boolean bubbles,
52 [Default=Undefined] optional boolean cancelable); 52 [Default=Undefined] optional boolean cancelable);
53 53
54 // Shadow DOM 54 // Shadow DOM
55 // https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-event-inte rface 55 // https://w3c.github.io/webcomponents/spec/shadow/#extensions-to-event-inte rface
56 [MeasureAs=EventPath, CallWith=ScriptState] readonly attribute EventTarget[] path; 56 [MeasureAs=EventPath, CallWith=ScriptState] readonly attribute EventTarget[] path;
57 57
(...skipping 11 matching lines...) Expand all
69 const unsigned short KEYPRESS = 1024; 69 const unsigned short KEYPRESS = 1024;
70 const unsigned short DRAGDROP = 2048; 70 const unsigned short DRAGDROP = 2048;
71 const unsigned short FOCUS = 4096; 71 const unsigned short FOCUS = 4096;
72 const unsigned short BLUR = 8192; 72 const unsigned short BLUR = 8192;
73 const unsigned short SELECT = 16384; 73 const unsigned short SELECT = 16384;
74 const unsigned short CHANGE = 32768; 74 const unsigned short CHANGE = 32768;
75 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement; 75 [MeasureAs=EventSrcElement] readonly attribute EventTarget srcElement;
76 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue; 76 [MeasureAs=EventReturnValue, CallWith=ExecutionContext, ImplementedAs=legacy ReturnValue] attribute boolean returnValue;
77 [MeasureAs=EventCancelBubble] attribute boolean cancelBubble; 77 [MeasureAs=EventCancelBubble] attribute boolean cancelBubble;
78 }; 78 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698