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

Unified Diff: third_party/WebKit/Source/core/dom/Document.idl

Issue 2352333002: Add more use counters for document.createTouch (Closed)
Patch Set: back out Touch changes Created 4 years, 3 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 | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/Document.idl
diff --git a/third_party/WebKit/Source/core/dom/Document.idl b/third_party/WebKit/Source/core/dom/Document.idl
index 8598cce63865cf7af00397d9c0ec2330cfe9de6e..126a69826956acafcc9c6a424912773964a97e57 100644
--- a/third_party/WebKit/Source/core/dom/Document.idl
+++ b/third_party/WebKit/Source/core/dom/Document.idl
@@ -156,17 +156,18 @@ interface Document : Node {
// Touch Events
// http://rawgit.com/w3c/touch-events/v1-errata/touchevents.html#extensions-to-the-document-interface
// FIXME: The arguments should not be optional.
- [RuntimeEnabled=Touch, Measure, LegacyInterfaceTypeChecking] Touch createTouch([Default=Undefined] optional Window window,
- [Default=Undefined] optional EventTarget target,
- [Default=Undefined] optional long identifier,
- [Default=Undefined] optional unrestricted double pageX,
- [Default=Undefined] optional unrestricted double pageY,
- [Default=Undefined] optional unrestricted double screenX,
- [Default=Undefined] optional unrestricted double screenY,
- [Default=Undefined] optional unrestricted double radiusX,
- [Default=Undefined] optional unrestricted double radiusY,
- [Default=Undefined] optional unrestricted float rotationAngle,
- [Default=Undefined] optional unrestricted float force);
+ [RuntimeEnabled=Touch, Measure, LegacyInterfaceTypeChecking, Custom=CallPrologue]
+ Touch createTouch([Default=Undefined] optional Window window,
+ [Default=Undefined] optional EventTarget target,
+ [Default=Undefined] optional long identifier,
+ [Default=Undefined] optional unrestricted double pageX,
+ [Default=Undefined] optional unrestricted double pageY,
+ [Default=Undefined] optional unrestricted double screenX,
+ [Default=Undefined] optional unrestricted double screenY,
+ [Default=Undefined] optional unrestricted double radiusX,
+ [Default=Undefined] optional unrestricted double radiusY,
+ [Default=Undefined] optional unrestricted float rotationAngle,
+ [Default=Undefined] optional unrestricted float force);
[RuntimeEnabled=Touch] TouchList createTouchList(Touch... touches);
// Custom Elements
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698