| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| index 6fc3d8e910afe2a966227225e9592acd23fa483b..96591e01a92764b3dc41c715799e46bc06fe1533 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -160,7 +160,6 @@
|
| #include "modules/presentation/PresentationController.h"
|
| #include "modules/push_messaging/PushController.h"
|
| #include "modules/screen_orientation/ScreenOrientationController.h"
|
| -#include "modules/vr/VRController.h"
|
| #include "modules/wake_lock/ScreenWakeLock.h"
|
| #include "platform/ScriptForbiddenScope.h"
|
| #include "platform/TraceEvent.h"
|
| @@ -1487,8 +1486,6 @@ void WebLocalFrameImpl::setCoreFrame(LocalFrame* frame)
|
| ScreenOrientationController::provideTo(*m_frame, m_client ? m_client->webScreenOrientationClient() : nullptr);
|
| if (RuntimeEnabledFeatures::presentationEnabled())
|
| PresentationController::provideTo(*m_frame, m_client ? m_client->presentationClient() : nullptr);
|
| - if (RuntimeEnabledFeatures::webVREnabled())
|
| - VRController::provideTo(*m_frame, m_client ? m_client->serviceRegistry() : nullptr);
|
| if (RuntimeEnabledFeatures::audioOutputDevicesEnabled())
|
| provideAudioOutputDeviceClientTo(*m_frame, AudioOutputDeviceClientImpl::create());
|
| if (RuntimeEnabledFeatures::installedAppEnabled())
|
|
|