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

Unified Diff: Source/platform/exported/WebContentDecryptionModuleSession.cpp

Issue 641433002: Implement MediaKeySession.load() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/platform/exported/WebContentDecryptionModuleSession.cpp
diff --git a/Source/platform/exported/WebContentDecryptionModuleSession.cpp b/Source/platform/exported/WebContentDecryptionModuleSession.cpp
index 012527442aadf8c62684872713046fb775ae7129..68ea312116fcd7de9868934d4361e2ce36ceb815 100644
--- a/Source/platform/exported/WebContentDecryptionModuleSession.cpp
+++ b/Source/platform/exported/WebContentDecryptionModuleSession.cpp
@@ -48,6 +48,11 @@ void WebContentDecryptionModuleSession::initializeNewSession(const WebString& in
ReportError(result);
}
+void WebContentDecryptionModuleSession::loadSession(const WebString& sessionId, WebContentDecryptionModuleResult result)
+{
+ ReportError(result);
+}
+
void WebContentDecryptionModuleSession::update(const unsigned char* response, size_t responseLength, WebContentDecryptionModuleResult result)
{
ReportError(result);

Powered by Google App Engine
This is Rietveld 408576698