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

Unified Diff: Source/platform/drm/ContentDecryptionModule.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/ContentDecryptionModule.h ('k') | Source/platform/drm/ContentDecryptionModuleSession.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/platform/drm/ContentDecryptionModule.h ('k') | Source/platform/drm/ContentDecryptionModuleSession.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698