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

Unified Diff: third_party/WebKit/Source/modules/vr/VRController.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: third_party/WebKit/Source/modules/vr/VRController.h
diff --git a/third_party/WebKit/Source/modules/vr/VRController.h b/third_party/WebKit/Source/modules/vr/VRController.h
index 9c8b5b85f09bbc8588cff718159b02d1ab312247..ac119b13aceb96e6aeb24e82200a6b778ddb8181 100644
--- a/third_party/WebKit/Source/modules/vr/VRController.h
+++ b/third_party/WebKit/Source/modules/vr/VRController.h
@@ -58,7 +58,9 @@ class VRController final : public GarbageCollectedFinalized<VRController>,
void OnDisplayChanged(device::blink::VRDisplayPtr) override;
void OnExitPresent(unsigned index) override;
void OnDisplayConnected(device::blink::VRDisplayPtr) override;
- void OnDisplayDisconnected(unsigned) override;
+ void OnDisplayDisconnected(unsigned index) override;
+ void OnDisplayBlur(unsigned index) override;
+ void OnDisplayFocus(unsigned index) override;
// ContextLifecycleObserver.
void contextDestroyed() override;

Powered by Google App Engine
This is Rietveld 408576698