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

Unified Diff: device/vr/vr_service_impl_unittest.cc

Issue 2471433002: Implement WebVR presentation pausing for VR Shell Menu Mode (Closed)
Patch Set: Implement Blur/Focus in MockVRServiceClient 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/vr_service_impl_unittest.cc
diff --git a/device/vr/vr_service_impl_unittest.cc b/device/vr/vr_service_impl_unittest.cc
index 300bf0dbfb960c8fc738333a2253a3fca33e7504..93a775beaa9c661cffb1b3024041d646200ac153 100644
--- a/device/vr/vr_service_impl_unittest.cc
+++ b/device/vr/vr_service_impl_unittest.cc
@@ -33,6 +33,8 @@ class MockVRServiceClient : public VRServiceClient {
last_display_ = std::move(display);
}
void OnDisplayDisconnected(unsigned index) override {}
+ void OnDisplayBlur(unsigned index) override {}
+ void OnDisplayFocus(unsigned index) override {}
const VRDisplayPtr& LastDisplay() { return last_display_; }

Powered by Google App Engine
This is Rietveld 408576698