| Index: chrome/browser/ui/tab_helpers.cc
|
| diff --git a/chrome/browser/ui/tab_helpers.cc b/chrome/browser/ui/tab_helpers.cc
|
| index 86d21a45bc68e40f3de8b2026360725b41928f9b..a37fdf96fbcb49e5c4e009885cf64cbe708cc518 100644
|
| --- a/chrome/browser/ui/tab_helpers.cc
|
| +++ b/chrome/browser/ui/tab_helpers.cc
|
| @@ -77,6 +77,12 @@
|
| #include "chrome/browser/android/offline_pages/recent_tab_helper.h"
|
| #include "chrome/browser/android/search_geolocation/search_geolocation_disclosure_tab_helper.h"
|
| #include "chrome/browser/android/voice_search_tab_helper.h"
|
| +
|
| +#include "device/vr/features/features.h"
|
| +#if BUILDFLAG(ENABLE_VR)
|
| +#include "chrome/browser/android/vr_shell/vr_tab_helper.h"
|
| +#endif // BUILDFLAG(ENABLE_VR)
|
| +
|
| #include "chrome/browser/android/webapps/single_tab_mode_tab_helper.h"
|
| #include "chrome/browser/ui/android/context_menu_helper.h"
|
| #include "chrome/browser/ui/android/view_android_helper.h"
|
| @@ -233,6 +239,11 @@ void TabHelpers::AttachTabHelpers(WebContents* web_contents) {
|
| SingleTabModeTabHelper::CreateForWebContents(web_contents);
|
| ViewAndroidHelper::CreateForWebContents(web_contents);
|
| VoiceSearchTabHelper::CreateForWebContents(web_contents);
|
| +
|
| +#if BUILDFLAG(ENABLE_VR)
|
| + vr_shell::VrTabHelper::CreateForWebContents(web_contents);
|
| +#endif
|
| +
|
| #else
|
| BookmarkTabHelper::CreateForWebContents(web_contents);
|
| extensions::ChromeExtensionWebContentsObserver::CreateForWebContents(
|
|
|