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; |
-}; |
+}; |