Index: chrome/browser/android/vr_shell/vr_shell.cc |
diff --git a/chrome/browser/android/vr_shell/vr_shell.cc b/chrome/browser/android/vr_shell/vr_shell.cc |
index d77ea0bc040bed3e4a4c0d53920e6f198d74578f..7a080655c59a88719d2a19fc930e19f91cfa2f25 100644 |
--- a/chrome/browser/android/vr_shell/vr_shell.cc |
+++ b/chrome/browser/android/vr_shell/vr_shell.cc |
@@ -407,6 +407,12 @@ void VrShell::DoUiAction(const UiAction action, |
SetContentPaused(paused); |
break; |
} |
+ case SHOW_TAB: { |
+ int id; |
+ CHECK(arguments->GetInteger("id", &id)); |
+ delegate_provider_->ShowTab(id); |
+ break; |
+ } |
#if defined(ENABLE_VR_SHELL_UI_DEV) |
case RELOAD_UI: |
ui_contents_->GetController().Reload(content::ReloadType::NORMAL, false); |