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

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

Issue 2041003003: Moved vr_service.mojom from blink to device (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed missing mojo dependency in gyp builds Created 4 years, 6 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
« no previous file with comments | « device/vr/android/cardboard/cardboard_vr_device.cc ('k') | device/vr/test/fake_vr_device.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/vr/test/fake_vr_device.h
diff --git a/device/vr/test/fake_vr_device.h b/device/vr/test/fake_vr_device.h
index 9417eaade3e564a6376044dee05a7197c87b40f6..d306cd35aff595275b0897ac4cede79740c755e7 100644
--- a/device/vr/test/fake_vr_device.h
+++ b/device/vr/test/fake_vr_device.h
@@ -16,16 +16,16 @@ class FakeVRDevice : public VRDevice {
explicit FakeVRDevice(VRDeviceProvider* provider);
~FakeVRDevice() override;
- void SetVRDevice(const blink::mojom::VRDisplayPtr& device);
- void SetPose(const blink::mojom::VRPosePtr& state);
+ void SetVRDevice(const VRDisplayPtr& device);
+ void SetPose(const VRPosePtr& state);
- blink::mojom::VRDisplayPtr GetVRDevice() override;
- blink::mojom::VRPosePtr GetPose() override;
+ VRDisplayPtr GetVRDevice() override;
+ VRPosePtr GetPose() override;
void ResetPose() override;
private:
- blink::mojom::VRDisplayPtr device_;
- blink::mojom::VRPosePtr pose_;
+ VRDisplayPtr device_;
+ VRPosePtr pose_;
DISALLOW_COPY_AND_ASSIGN(FakeVRDevice);
};
« no previous file with comments | « device/vr/android/cardboard/cardboard_vr_device.cc ('k') | device/vr/test/fake_vr_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698