| 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 #include "device/vr/test/fake_vr_device.h" | 5 #include "device/vr/test/fake_vr_device.h" |
| 6 | 6 |
| 7 namespace device { | 7 namespace device { |
| 8 | 8 |
| 9 FakeVRDevice::FakeVRDevice() { | 9 FakeVRDevice::FakeVRDevice() { |
| 10 device_ = mojom::VRDisplayInfo::New(); | 10 device_ = mojom::VRDisplayInfo::New(); |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 void FakeVRDevice::ExitPresent() { | 79 void FakeVRDevice::ExitPresent() { |
| 80 OnExitPresent(); | 80 OnExitPresent(); |
| 81 } | 81 } |
| 82 | 82 |
| 83 void FakeVRDevice::SubmitFrame(mojom::VRPosePtr pose) {} | 83 void FakeVRDevice::SubmitFrame(mojom::VRPosePtr pose) {} |
| 84 | 84 |
| 85 void FakeVRDevice::UpdateLayerBounds(mojom::VRLayerBoundsPtr leftBounds, | 85 void FakeVRDevice::UpdateLayerBounds(mojom::VRLayerBoundsPtr leftBounds, |
| 86 mojom::VRLayerBoundsPtr rightBounds) {} | 86 mojom::VRLayerBoundsPtr rightBounds) {} |
| 87 | 87 |
| 88 void FakeVRDevice::GetVRVSyncProvider(mojom::VRVSyncProviderRequest request) {} |
| 89 |
| 88 } // namespace device | 90 } // namespace device |
| OLD | NEW |