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

Unified Diff: content/browser/vr/test/fake_vr_device.h

Issue 1832813002: Add mojom module suffix in .mojom files in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Tom's comment Created 4 years, 9 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
Index: content/browser/vr/test/fake_vr_device.h
diff --git a/content/browser/vr/test/fake_vr_device.h b/content/browser/vr/test/fake_vr_device.h
index b58ac93d484ee3571c9eb0685103e029a63d3e37..2f88a3624e07904d79f83cdc86443e896c0fc922 100644
--- a/content/browser/vr/test/fake_vr_device.h
+++ b/content/browser/vr/test/fake_vr_device.h
@@ -16,16 +16,16 @@ class FakeVRDevice : public VRDevice {
explicit FakeVRDevice(VRDeviceProvider* provider);
~FakeVRDevice() override;
- void SetVRDevice(const VRDeviceInfoPtr& device);
- void SetSensorState(const VRSensorStatePtr& state);
+ void SetVRDevice(const mojom::VRDeviceInfoPtr& device);
+ void SetSensorState(const mojom::VRSensorStatePtr& state);
- VRDeviceInfoPtr GetVRDevice() override;
- VRSensorStatePtr GetSensorState() override;
+ mojom::VRDeviceInfoPtr GetVRDevice() override;
+ mojom::VRSensorStatePtr GetSensorState() override;
void ResetSensor() override{};
private:
- VRDeviceInfoPtr device_;
- VRSensorStatePtr state_;
+ mojom::VRDeviceInfoPtr device_;
+ mojom::VRSensorStatePtr state_;
DISALLOW_COPY_AND_ASSIGN(FakeVRDevice);
};
« no previous file with comments | « content/browser/vr/android/cardboard/cardboard_vr_device.cc ('k') | content/browser/vr/test/fake_vr_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698