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

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

Issue 2736593002: Update API to latest spec : Remove VRFrameData#timestamp (Closed)
Patch Set: modify mock-vr-service.js 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
Index: third_party/WebKit/Source/modules/vr/VRFrameData.h
diff --git a/third_party/WebKit/Source/modules/vr/VRFrameData.h b/third_party/WebKit/Source/modules/vr/VRFrameData.h
index ef5e3abd8f0437a73cf5ef5c1d48e795370b4997..60acc1b8986733e0510398a14fa2b2a9d6ea25f3 100644
--- a/third_party/WebKit/Source/modules/vr/VRFrameData.h
+++ b/third_party/WebKit/Source/modules/vr/VRFrameData.h
@@ -6,7 +6,6 @@
#define VRFrameData_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"
@@ -26,7 +25,6 @@ class VRFrameData final : public GarbageCollected<VRFrameData>,
VRFrameData();
- DOMHighResTimeStamp timestamp() const { return m_timestamp; }
DOMFloat32Array* leftProjectionMatrix() const {
return m_leftProjectionMatrix;
}
@@ -49,7 +47,6 @@ class VRFrameData final : public GarbageCollected<VRFrameData>,
DECLARE_VIRTUAL_TRACE()
private:
- DOMHighResTimeStamp m_timestamp;
Member<DOMFloat32Array> m_leftProjectionMatrix;
Member<DOMFloat32Array> m_leftViewMatrix;
Member<DOMFloat32Array> m_rightProjectionMatrix;

Powered by Google App Engine
This is Rietveld 408576698