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

Unified Diff: Source/web/MediaKeysClientImpl.cpp

Issue 338713002: Remove duplicated provideMediaKeysTo() in MediaKeysClient.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months 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
Index: Source/web/MediaKeysClientImpl.cpp
diff --git a/Source/web/MediaKeysClientImpl.cpp b/Source/web/MediaKeysClientImpl.cpp
index d78da372c3785309d2a465917924a986df6f3492..78c839f23c34f5abc6cb73cfe4e48e7573b5e0ce 100644
--- a/Source/web/MediaKeysClientImpl.cpp
+++ b/Source/web/MediaKeysClientImpl.cpp
@@ -19,6 +19,11 @@ MediaKeysClientImpl::MediaKeysClientImpl()
{
}
+PassOwnPtr<MediaKeysClient> MediaKeysClientImpl::create()
+{
+ return adoptPtr(new MediaKeysClientImpl());
+}
+
PassOwnPtr<WebContentDecryptionModule> MediaKeysClientImpl::createContentDecryptionModule(WebCore::ExecutionContext* executionContext, const String& keySystem)
{
Document* document = toDocument(executionContext);

Powered by Google App Engine
This is Rietveld 408576698