Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2545)

Unified Diff: Source/platform/drm/ContentDecryptionModuleSession.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/drm/ContentDecryptionModuleSession.h ('k') | Source/platform/exported/Platform.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « Source/platform/drm/ContentDecryptionModuleSession.h ('k') | Source/platform/exported/Platform.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698