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 9166284ff3b5fa6386294b51007dca982963bba5..2bbb63d791ae3f9d7a440b746eee682397d552da 100644 |
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
@@ -166,7 +166,6 @@ |
#include "modules/screen_orientation/ScreenOrientationController.h" |
#include "modules/vr/VRController.h" |
#include "modules/wake_lock/ScreenWakeLock.h" |
-#include "modules/webusb/USBController.h" |
#include "platform/ScriptForbiddenScope.h" |
#include "platform/TraceEvent.h" |
#include "platform/UserGestureIndicator.h" |
@@ -1539,8 +1538,6 @@ void WebLocalFrameImpl::setCoreFrame(RawPtr<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::webUSBEnabled()) |
- USBController::provideTo(*m_frame, m_client ? m_client->usbClient() : nullptr); |
if (RuntimeEnabledFeatures::webVREnabled()) |
VRController::provideTo(*m_frame, m_client ? m_client->webVRClient() : nullptr); |
if (RuntimeEnabledFeatures::wakeLockEnabled()) |