| Index: third_party/WebKit/Source/web/MediaKeysClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/MediaKeysClientImpl.cpp b/third_party/WebKit/Source/web/MediaKeysClientImpl.cpp
|
| index 82c05859418e4e0912e55e3bc3c243094ead3436..6f4927c61baa20658974bea08efc56998a71818a 100644
|
| --- a/third_party/WebKit/Source/web/MediaKeysClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/MediaKeysClientImpl.cpp
|
| @@ -6,9 +6,9 @@
|
|
|
| #include "core/dom/Document.h"
|
| #include "core/dom/ExecutionContext.h"
|
| +#include "core/frame/WebLocalFrameBase.h"
|
| #include "public/platform/WebContentDecryptionModule.h"
|
| #include "public/web/WebFrameClient.h"
|
| -#include "web/WebLocalFrameImpl.h"
|
|
|
| namespace blink {
|
|
|
| @@ -17,8 +17,8 @@ MediaKeysClientImpl::MediaKeysClientImpl() {}
|
| WebEncryptedMediaClient* MediaKeysClientImpl::EncryptedMediaClient(
|
| ExecutionContext* execution_context) {
|
| Document* document = ToDocument(execution_context);
|
| - WebLocalFrameImpl* web_frame =
|
| - WebLocalFrameImpl::FromFrame(document->GetFrame());
|
| + WebLocalFrameBase* web_frame =
|
| + WebLocalFrameBase::FromFrame(document->GetFrame());
|
| return web_frame->Client()->EncryptedMediaClient();
|
| }
|
|
|
|
|