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 22177d12d8da84500e1c6e0aee686d984b552218..22392665f35ae3c8d9a41dcd833cc4f8cdfa122f 100644 |
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
@@ -157,7 +157,6 @@ |
#include "modules/bluetooth/BluetoothSupplement.h" |
#include "modules/installedapp/InstalledAppController.h" |
#include "modules/notifications/NotificationPermissionClient.h" |
-#include "modules/permissions/PermissionController.h" |
#include "modules/presentation/PresentationController.h" |
#include "modules/push_messaging/PushController.h" |
#include "modules/screen_orientation/ScreenOrientationController.h" |
@@ -1484,8 +1483,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::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::wakeLockEnabled()) |