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

Unified Diff: third_party/WebKit/Source/modules/vr/VREyeParameters.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/modules/vr/VREyeParameters.idl
diff --git a/third_party/WebKit/Source/modules/vr/VREyeParameters.idl b/third_party/WebKit/Source/modules/vr/VREyeParameters.idl
index 5a83da523d60fde77fc9ba7f8ce04db208d2f466..7d4747a06bff71deb5adca1792e6186918602c4e 100644
--- a/third_party/WebKit/Source/modules/vr/VREyeParameters.idl
+++ b/third_party/WebKit/Source/modules/vr/VREyeParameters.idl
@@ -11,9 +11,9 @@
readonly attribute VRFieldOfView minimumFieldOfView;
readonly attribute VRFieldOfView maximumFieldOfView;
readonly attribute VRFieldOfView recommendedFieldOfView;
- readonly attribute DOMPoint eyeTranslation;
+ [CallWith=ScriptState] readonly attribute any eyeTranslation;
zino 2016/02/18 16:25:33 I used 'any' keyword but I'm not sure if this is a
domenic 2016/02/18 19:04:41 That has been what we have been doing so far, but
zino 2016/02/22 09:51:01 Done.
/* These values will vary after a FOV has been set */
readonly attribute VRFieldOfView currentFieldOfView;
readonly attribute DOMRect renderRect;
-};
+};

Powered by Google App Engine
This is Rietveld 408576698