| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VRPositionState_h | 5 #ifndef VRPositionState_h |
| 6 #define VRPositionState_h | 6 #define VRPositionState_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "core/dom/DOMPoint.h" | 9 #include "core/dom/DOMPoint.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 11 #include "public/platform/WebVR.h" | 11 #include "public/platform/modules/vr/WebVR.h" |
| 12 #include "wtf/Forward.h" | 12 #include "wtf/Forward.h" |
| 13 #include "wtf/text/WTFString.h" | 13 #include "wtf/text/WTFString.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class VRPositionState final : public GarbageCollected<VRPositionState>, public S
criptWrappable { | 17 class VRPositionState final : public GarbageCollected<VRPositionState>, public S
criptWrappable { |
| 18 DEFINE_WRAPPERTYPEINFO(); | 18 DEFINE_WRAPPERTYPEINFO(); |
| 19 public: | 19 public: |
| 20 static VRPositionState* create() | 20 static VRPositionState* create() |
| 21 { | 21 { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 42 Member<DOMPoint> m_position; | 42 Member<DOMPoint> m_position; |
| 43 Member<DOMPoint> m_angularVelocity; | 43 Member<DOMPoint> m_angularVelocity; |
| 44 Member<DOMPoint> m_linearVelocity; | 44 Member<DOMPoint> m_linearVelocity; |
| 45 Member<DOMPoint> m_angularAcceleration; | 45 Member<DOMPoint> m_angularAcceleration; |
| 46 Member<DOMPoint> m_linearAcceleration; | 46 Member<DOMPoint> m_linearAcceleration; |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace blink | 49 } // namespace blink |
| 50 | 50 |
| 51 #endif // VRPositionState_h | 51 #endif // VRPositionState_h |
| OLD | NEW |