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

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: Changes 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..5acd4b8c788016fa555f31851dba26a446133c1f 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::load(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