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

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..51db51d77d635a7dff4a5f227990f0c895764633 100644
--- a/third_party/WebKit/Source/modules/vr/VREyeParameters.idl
+++ b/third_party/WebKit/Source/modules/vr/VREyeParameters.idl
@@ -11,9 +11,13 @@
readonly attribute VRFieldOfView minimumFieldOfView;
readonly attribute VRFieldOfView maximumFieldOfView;
readonly attribute VRFieldOfView recommendedFieldOfView;
- readonly attribute DOMPoint eyeTranslation;
+
+ // The spec says that the following value should be DOMPoint but for now
+ // we use 'any' instead since it is implemented with V8 extras.
+ // Please see: http://crbug.com/588630
+ readonly attribute any eyeTranslation;
haraken 2016/02/25 11:21:11 If this change is not an urgent one, can we fix th
/* 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