| 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 0528bfb5b21c2defdad73ad05cf91d77ed649286..8f2789f1330e6c2ac74997ddc6cede9841bbc592 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -158,6 +158,7 @@
|
| #include "modules/audio_output_devices/AudioOutputDeviceClient.h"
|
| #include "modules/bluetooth/BluetoothSupplement.h"
|
| #include "modules/geolocation/GeolocationController.h"
|
| +#include "modules/installedapp/InstalledAppController.h"
|
| #include "modules/notifications/NotificationPermissionClient.h"
|
| #include "modules/permissions/PermissionController.h"
|
| #include "modules/presentation/PresentationController.h"
|
| @@ -1558,6 +1559,9 @@ void WebLocalFrameImpl::setCoreFrame(PassRefPtrWillBeRawPtr<LocalFrame> frame)
|
| ScreenWakeLock::provideTo(*m_frame, m_client ? m_client->wakeLockClient() : nullptr);
|
| if (RuntimeEnabledFeatures::audioOutputDevicesEnabled())
|
| provideAudioOutputDeviceClientTo(*m_frame, AudioOutputDeviceClientImpl::create());
|
| + if (RuntimeEnabledFeatures::installedAppEnabled()) {
|
| + InstalledAppController::provideTo(*m_frame, m_client ? m_client->installedAppClient() : nullptr);
|
| + }
|
| }
|
| }
|
|
|
|
|