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

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

Issue 2420743003: mojo VR interface simplified (Closed)
Patch Set: address leon@ comments about name Created 4 years, 2 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: device/vr/test/fake_vr_device_provider.h
diff --git a/device/vr/test/fake_vr_device_provider.h b/device/vr/test/fake_vr_device_provider.h
index 29323f3e361a0f8cdb7984a9adda7c1517687938..576e0c137ede1cd0086a7b439b271a2e6164c8e1 100644
--- a/device/vr/test/fake_vr_device_provider.h
+++ b/device/vr/test/fake_vr_device_provider.h
@@ -22,8 +22,9 @@ class FakeVRDeviceProvider : public VRDeviceProvider {
void RemoveDevice(VRDevice* device);
bool IsInitialized() { return initialized_; }
- void GetDevices(std::vector<VRDevice*>* devices) override;
- void Initialize() override;
+ void GetDevices(std::vector<VRServiceImpl*>* clients,
+ std::vector<VRDevice*>* devices) override;
+ void Initialize(std::vector<VRServiceImpl*>* clients) override;
private:
std::vector<VRDevice*> devices_;

Powered by Google App Engine
This is Rietveld 408576698