| 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..75ed9772cec9170c2f9b0d3e9bd5a34a49392ccd 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"
|
| @@ -1488,8 +1487,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::audioOutputDevicesEnabled())
|
|
|