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

Unified Diff: third_party/WebKit/Source/modules/vr/VRPose.idl

Issue 2754783004: Add UseCounters to evaluate usage and risk with upcoming WebVR spec changes. (Closed)
Patch Set: Created 3 years, 9 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/modules/vr/VREyeParameters.idl ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/vr/VRPose.idl
diff --git a/third_party/WebKit/Source/modules/vr/VRPose.idl b/third_party/WebKit/Source/modules/vr/VRPose.idl
index 097ca95d1b5b1469cc2d94dda49a070dd5b6c723..4b29a8474137115f41f729d5cabe87814b45f6c9 100644
--- a/third_party/WebKit/Source/modules/vr/VRPose.idl
+++ b/third_party/WebKit/Source/modules/vr/VRPose.idl
@@ -7,9 +7,9 @@
OriginTrialEnabled=WebVR,
] interface VRPose {
readonly attribute Float32Array? position;
- readonly attribute Float32Array? linearVelocity;
- readonly attribute Float32Array? linearAcceleration;
+ [MeasureAs=VRPoseLinearVelocity] readonly attribute Float32Array? linearVelocity;
+ [MeasureAs=VRPoseLinearAcceleration] readonly attribute Float32Array? linearAcceleration;
readonly attribute Float32Array? orientation;
- readonly attribute Float32Array? angularVelocity;
- readonly attribute Float32Array? angularAcceleration;
+ [MeasureAs=VRPoseAngularVelocity] readonly attribute Float32Array? angularVelocity;
+ [MeasureAs=VRPoseAngularAcceleration] readonly attribute Float32Array? angularAcceleration;
};
« no previous file with comments | « third_party/WebKit/Source/modules/vr/VREyeParameters.idl ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698