| 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 900b0a264af724c97a8e73086f945556ab30f406..83d1488380ac8c6c57d9a3df0403174504e7c361 100644 | 
| --- a/third_party/WebKit/Source/modules/vr/VRDisplay.cpp | 
| +++ b/third_party/WebKit/Source/modules/vr/VRDisplay.cpp | 
| @@ -710,7 +710,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::isFullscreenElement(*m_layer.source())) { | 
| +  if (!Fullscreen::isCurrentFullScreenElement(*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 | 
|  |