| 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 03285f6ddaaa82d7f08f30dd5fbcf67906660402..ad7aa4334676b4fc12924b4855beb62332dba443 100644
|
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
|
| @@ -156,6 +156,7 @@
|
| #include "core/timing/DOMWindowPerformance.h"
|
| #include "core/timing/Performance.h"
|
| #include "modules/app_banner/AppBannerController.h"
|
| +#include "modules/audio_output_devices/AudioOutputDeviceClient.h"
|
| #include "modules/bluetooth/BluetoothSupplement.h"
|
| #include "modules/geolocation/GeolocationController.h"
|
| #include "modules/notifications/NotificationPermissionClient.h"
|
| @@ -218,6 +219,7 @@
|
| #include "public/web/WebTreeScopeType.h"
|
| #include "skia/ext/platform_device.h"
|
| #include "web/AssociatedURLLoader.h"
|
| +#include "web/AudioOutputDeviceClientImpl.h"
|
| #include "web/CompositionUnderlineVectorBuilder.h"
|
| #include "web/FindInPageCoordinates.h"
|
| #include "web/GeolocationClientProxy.h"
|
| @@ -1728,6 +1730,8 @@ void WebLocalFrameImpl::setCoreFrame(PassRefPtrWillBeRawPtr<LocalFrame> frame)
|
| VRController::provideTo(*m_frame, m_client ? m_client->webVRClient() : nullptr);
|
| if (RuntimeEnabledFeatures::wakeLockEnabled())
|
| ScreenWakeLock::provideTo(*m_frame, m_client ? m_client->wakeLockClient() : nullptr);
|
| + if (RuntimeEnabledFeatures::audioOutputDevicesEnabled())
|
| + provideAudioOutputDeviceClientTo(*m_frame, AudioOutputDeviceClientImpl::create());
|
| }
|
| }
|
|
|
|
|