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

Unified Diff: third_party/WebKit/Source/modules/vr/VRDisplay.cpp

Issue 2557943002: Sync requestFullscreen() and exitFullscreen() algorithms with the spec (Closed)
Patch Set: rebase Created 4 years 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/VRDisplay.cpp
diff --git a/third_party/WebKit/Source/modules/vr/VRDisplay.cpp b/third_party/WebKit/Source/modules/vr/VRDisplay.cpp
index f4ed320cc08a64a6e4e702780e0f580cb96d374d..c36d579ccf3cfabeb8d6f536b85cff4a7ebab18b 100644
--- a/third_party/WebKit/Source/modules/vr/VRDisplay.cpp
+++ b/third_party/WebKit/Source/modules/vr/VRDisplay.cpp
@@ -705,7 +705,7 @@ void VRDisplay::onFullscreenCheck(TimerBase*) {
// depend on the Fullscreen API to fake VR presentation, so this will
// become unnessecary. Until that point, though, this seems preferable to
// adding a bunch of notification plumbing to Fullscreen.
- if (!Fullscreen::isCurrentFullScreenElement(*m_layer.source())) {
+ if (!Fullscreen::isFullscreenElement(*m_layer.source())) {
// TODO(mthiesse): Due to asynchronous resizing, we might get kicked out of
// fullscreen when changing display parameters upon entering WebVR. So one
// time only, we reenter fullscreen after having left it; otherwise we exit

Powered by Google App Engine
This is Rietveld 408576698