| Index: third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
|
| index 7d9ccd18e0cdb994b2946b5c166681be854e54aa..34780a870b8dcf2ce7fa41cd5c3b76adb386d43f 100644
|
| --- a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
|
| @@ -4,11 +4,11 @@
|
|
|
| #include "web/AudioOutputDeviceClientImpl.h"
|
|
|
| +#include <memory>
|
| #include "core/dom/Document.h"
|
| #include "core/dom/ExecutionContext.h"
|
| +#include "core/frame/WebLocalFrameBase.h"
|
| #include "public/web/WebFrameClient.h"
|
| -#include "web/WebLocalFrameImpl.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -24,8 +24,8 @@ void AudioOutputDeviceClientImpl::CheckIfAudioSinkExistsAndIsAuthorized(
|
| DCHECK(context);
|
| DCHECK(context->IsDocument());
|
| Document* document = ToDocument(context);
|
| - WebLocalFrameImpl* web_frame =
|
| - WebLocalFrameImpl::FromFrame(document->GetFrame());
|
| + WebLocalFrameBase* web_frame =
|
| + WebLocalFrameBase::FromFrame(document->GetFrame());
|
| web_frame->Client()->CheckIfAudioSinkExistsAndIsAuthorized(
|
| sink_id, WebSecurityOrigin(context->GetSecurityOrigin()),
|
| callbacks.release());
|
|
|