Index: Source/platform/drm/ContentDecryptionModuleSession.cpp |
diff --git a/Source/platform/drm/ContentDecryptionModuleSession.cpp b/Source/platform/drm/ContentDecryptionModuleSession.cpp |
index a639bf7f505fdf56665e819c4b3467ca0ca84094..0daabfb593a422cf74fd1aca1414d037e28410fe 100644 |
--- a/Source/platform/drm/ContentDecryptionModuleSession.cpp |
+++ b/Source/platform/drm/ContentDecryptionModuleSession.cpp |
@@ -39,7 +39,7 @@ |
namespace WebCore { |
-ContentDecryptionModuleSession::ContentDecryptionModuleSession(WebKit::WebContentDecryptionModule* contentDecryptionModule, ContentDecryptionModuleSessionClient* client) |
+ContentDecryptionModuleSession::ContentDecryptionModuleSession(blink::WebContentDecryptionModule* contentDecryptionModule, ContentDecryptionModuleSessionClient* client) |
: m_client(client) |
{ |
m_session = adoptPtr(contentDecryptionModule->createSession(this)); |
@@ -80,7 +80,7 @@ void ContentDecryptionModuleSession::keyError(MediaKeyErrorCode errorCode, unsig |
m_client->keyError(static_cast<ContentDecryptionModuleSessionClient::MediaKeyErrorCode>(errorCode), systemCode); |
} |
-void ContentDecryptionModuleSession::keyMessage(const unsigned char* message, size_t messageLength, const WebKit::WebURL& destinationURL) |
+void ContentDecryptionModuleSession::keyMessage(const unsigned char* message, size_t messageLength, const blink::WebURL& destinationURL) |
{ |
m_client->keyMessage(message, messageLength, destinationURL); |
} |