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

Unified Diff: third_party/WebKit/Source/core/testing/Internals.idl

Issue 1709003002: Geometry: Reimplement DOMPoint using V8 extras. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
Index: third_party/WebKit/Source/core/testing/Internals.idl
diff --git a/third_party/WebKit/Source/core/testing/Internals.idl b/third_party/WebKit/Source/core/testing/Internals.idl
index 65ec824edac13e8cea73838710eeb65deae2a9cd..58ff10bd576dc34259f92d3479201a615e85b2ae 100644
--- a/third_party/WebKit/Source/core/testing/Internals.idl
+++ b/third_party/WebKit/Source/core/testing/Internals.idl
@@ -130,9 +130,16 @@
unsigned long lengthFromRange(Element scope, Range range);
DOMString rangeAsText(Range range);
- [RaisesException] DOMPoint touchPositionAdjustedToBestClickableNode(long x, long y, long width, long height, Document document);
+ // The following method should return DOMPoint but for now
+ // we use 'any' instead since it is implemented with V8 extras.
+ // Please see: http://crbug.com/588630
+ [RaisesException] any touchPositionAdjustedToBestClickableNode(long x, long y, long width, long height, Document document);
haraken 2016/02/25 11:21:11 Add [CallWith=ScriptState] and pass it down to met
[RaisesException] Node touchNodeAdjustedToBestClickableNode(long x, long y, long width, long height, Document document);
- [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document document);
+
+ // The following method should return DOMPoint but for now
+ // we use 'any' instead since it is implemented with V8 extras.
+ // Please see: http://crbug.com/588630
+ [RaisesException] any touchPositionAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document document);
haraken 2016/02/25 11:21:10 Ditto.
[RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y, long width, long height, Document document);
[RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, long width, long height, Document document);

Powered by Google App Engine
This is Rietveld 408576698