| Index: third_party/WebKit/Source/modules/vr/VRPose.cpp
|
| diff --git a/third_party/WebKit/Source/modules/vr/VRPose.cpp b/third_party/WebKit/Source/modules/vr/VRPose.cpp
|
| index 1217bd251a4afd6e8c308414a03432aec9d9afae..5865b26000b81eb9c4c223b9f0edf74df00335cc 100644
|
| --- a/third_party/WebKit/Source/modules/vr/VRPose.cpp
|
| +++ b/third_party/WebKit/Source/modules/vr/VRPose.cpp
|
| @@ -19,7 +19,7 @@ DOMFloat32Array* mojoArrayToFloat32Array(const mojo::WTFArray<float>& vec)
|
| } // namespace
|
|
|
| VRPose::VRPose()
|
| - : m_timeStamp(0.0)
|
| + : m_timestamp(0.0)
|
| {
|
| }
|
|
|
| @@ -28,7 +28,7 @@ void VRPose::setPose(const device::blink::VRPosePtr& state)
|
| if (state.is_null())
|
| return;
|
|
|
| - m_timeStamp = state->timestamp;
|
| + m_timestamp = state->timestamp;
|
| m_orientation = mojoArrayToFloat32Array(state->orientation);
|
| m_position = mojoArrayToFloat32Array(state->position);
|
| m_angularVelocity = mojoArrayToFloat32Array(state->angularVelocity);
|
|
|