| Index: chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImpl.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImpl.java b/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImpl.java
|
| index f5650c3fa0708c6e394b82629aff82cff3eff9d2..d4436e1e234418e1713207c29dc3974475652321 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImpl.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImpl.java
|
| @@ -156,7 +156,7 @@ public class VrShellImpl
|
| getUiLayout().setCloseButtonListener(new Runnable() {
|
| @Override
|
| public void run() {
|
| - mDelegate.shutdownVR(false /* isPausing */, false /* showTransition */);
|
| + mDelegate.shutdownVr(false /* isPausing */, false /* showTransition */);
|
| }
|
| });
|
|
|
| @@ -355,7 +355,7 @@ public class VrShellImpl
|
| private void swapToForegroundTab() {
|
| Tab tab = mActivity.getActivityTab();
|
| if (tab == mTab) return;
|
| - if (!mDelegate.canEnterVR(tab)) {
|
| + if (!mDelegate.canEnterVr(tab)) {
|
| forceExitVr();
|
| return;
|
| }
|
| @@ -391,7 +391,7 @@ public class VrShellImpl
|
| // Exits VR, telling the user to remove their headset, and returning to Chromium.
|
| @CalledByNative
|
| public void forceExitVr() {
|
| - mDelegate.shutdownVR(false /* isPausing */, true /* showTransition */);
|
| + mDelegate.shutdownVr(false /* isPausing */, true /* showTransition */);
|
| }
|
|
|
| @CalledByNative
|
|
|