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

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

Issue 2471433002: Implement WebVR presentation pausing for VR Shell Menu Mode (Closed)
Patch Set: Address comments 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
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..66ff20db2fef2effcc5b310cb0fbc54b207d3664 100644
--- a/device/vr/test/fake_vr_device_provider.h
+++ b/device/vr/test/fake_vr_device_provider.h
@@ -14,7 +14,6 @@ namespace device {
class FakeVRDeviceProvider : public VRDeviceProvider {
public:
FakeVRDeviceProvider();
- ~FakeVRDeviceProvider() override;
// Adds devices to the provider with the given device, which will be
// returned when GetDevices is queried.
@@ -26,6 +25,8 @@ class FakeVRDeviceProvider : public VRDeviceProvider {
void Initialize() override;
private:
+ ~FakeVRDeviceProvider() override;
+
std::vector<VRDevice*> devices_;
bool initialized_;
};

Powered by Google App Engine
This is Rietveld 408576698