| Index: Source/platform/drm/ContentDecryptionModule.cpp
|
| diff --git a/Source/platform/drm/ContentDecryptionModule.cpp b/Source/platform/drm/ContentDecryptionModule.cpp
|
| index 4655a388bd68069b2791ed1ade4a91e267db6c48..b27a50cb6fdbc63aea63f17b74818fdaef08567c 100644
|
| --- a/Source/platform/drm/ContentDecryptionModule.cpp
|
| +++ b/Source/platform/drm/ContentDecryptionModule.cpp
|
| @@ -48,13 +48,13 @@ bool ContentDecryptionModule::supportsKeySystem(const String& keySystem)
|
| PassOwnPtr<ContentDecryptionModule> ContentDecryptionModule::create(const String& keySystem)
|
| {
|
| ASSERT(!keySystem.isEmpty());
|
| - OwnPtr<WebKit::WebContentDecryptionModule> cdm = adoptPtr(WebKit::Platform::current()->createContentDecryptionModule(keySystem));
|
| + OwnPtr<blink::WebContentDecryptionModule> cdm = adoptPtr(blink::Platform::current()->createContentDecryptionModule(keySystem));
|
| if (!cdm)
|
| return nullptr;
|
| return adoptPtr(new ContentDecryptionModule(cdm.release()));
|
| }
|
|
|
| -ContentDecryptionModule::ContentDecryptionModule(PassOwnPtr<WebKit::WebContentDecryptionModule> cdm)
|
| +ContentDecryptionModule::ContentDecryptionModule(PassOwnPtr<blink::WebContentDecryptionModule> cdm)
|
| : m_cdm(cdm)
|
| {
|
| ASSERT(m_cdm);
|
|
|