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

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

Issue 2331553002: Update WebVR interface to match the 1.1 spec (Closed)
Patch Set: Addressed further feedback Created 4 years, 3 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/VRPose.h
diff --git a/third_party/WebKit/Source/modules/vr/VRPose.h b/third_party/WebKit/Source/modules/vr/VRPose.h
index 87dae52103b0e56d3e3c4cb234ce798acdc11b90..5dc992b68d043fcb5fc3b4b588f22704ff01dd5d 100644
--- a/third_party/WebKit/Source/modules/vr/VRPose.h
+++ b/third_party/WebKit/Source/modules/vr/VRPose.h
@@ -6,7 +6,6 @@
#define VRPose_h
#include "bindings/core/v8/ScriptWrappable.h"
-#include "core/dom/DOMHighResTimeStamp.h"
#include "core/dom/DOMTypedArray.h"
#include "device/vr/vr_service.mojom-blink.h"
#include "platform/heap/Handle.h"
@@ -22,7 +21,6 @@ public:
return new VRPose();
}
- DOMHighResTimeStamp timestamp() const { return m_timestamp; }
DOMFloat32Array* orientation() const { return m_orientation; }
DOMFloat32Array* position() const { return m_position; }
DOMFloat32Array* angularVelocity() const { return m_angularVelocity; }
@@ -37,7 +35,6 @@ public:
private:
VRPose();
- DOMHighResTimeStamp m_timestamp;
Member<DOMFloat32Array> m_orientation;
Member<DOMFloat32Array> m_position;
Member<DOMFloat32Array> m_angularVelocity;

Powered by Google App Engine
This is Rietveld 408576698