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 9672566fe529b0560898a9a17ef532915fc524ee..32798c278b70d13966f118993b19df7f86ca7586 100644 |
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
@@ -161,7 +161,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" |
@@ -1490,8 +1489,6 @@ void WebLocalFrameImpl::setCoreFrame(LocalFrame* frame) |
PresentationController::provideTo(*m_frame, m_client ? m_client->presentationClient() : nullptr); |
if (RuntimeEnabledFeatures::permissionsEnabled()) |
PermissionController::provideTo(*m_frame, m_client ? m_client->permissionClient() : 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()) |