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

Unified Diff: device/vr/test/fake_vr_device.cc

Issue 2493063004: Fix exiting WebVR via Android UI not fully exiting fullscreen. (Closed)
Patch Set: Rebase pt. 2 Created 4 years, 1 month 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
« no previous file with comments | « device/vr/test/fake_vr_device.h ('k') | device/vr/vr_device.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/vr/test/fake_vr_device.cc
diff --git a/device/vr/test/fake_vr_device.cc b/device/vr/test/fake_vr_device.cc
index 79c614e56c53b56ac131bbd79562bfadd478f8a9..2f4386761474f849fd735e54c00c4fa8058dd173 100644
--- a/device/vr/test/fake_vr_device.cc
+++ b/device/vr/test/fake_vr_device.cc
@@ -63,23 +63,22 @@ mojom::VRDisplayInfoPtr FakeVRDevice::GetVRDevice() {
return display.Clone();
}
-mojom::VRPosePtr FakeVRDevice::GetPose(VRServiceImpl* service) {
+mojom::VRPosePtr FakeVRDevice::GetPose() {
return pose_.Clone();
}
-void FakeVRDevice::ResetPose(VRServiceImpl* service) {}
+void FakeVRDevice::ResetPose() {}
// TODO(shaobo.yan@intel.com): Will implemenate for VRDeviceServiceImpl tests.
-bool FakeVRDevice::RequestPresent(VRServiceImpl* service, bool secure_origin) {
+bool FakeVRDevice::RequestPresent(bool secure_origin) {
return true;
}
-void FakeVRDevice::ExitPresent(VRServiceImpl* service) {}
+void FakeVRDevice::ExitPresent() {}
-void FakeVRDevice::SubmitFrame(VRServiceImpl* service, mojom::VRPosePtr pose) {}
+void FakeVRDevice::SubmitFrame(mojom::VRPosePtr pose) {}
-void FakeVRDevice::UpdateLayerBounds(VRServiceImpl* service,
- mojom::VRLayerBoundsPtr leftBounds,
+void FakeVRDevice::UpdateLayerBounds(mojom::VRLayerBoundsPtr leftBounds,
mojom::VRLayerBoundsPtr rightBounds) {}
} // namespace device
« no previous file with comments | « device/vr/test/fake_vr_device.h ('k') | device/vr/vr_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698