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

Unified Diff: webkit/media/crypto/ppapi_decryptor.h

Issue 10704241: Add PpapiDecryptor which wraps a CDM plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolve comments and rebase. Created 8 years, 5 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: webkit/media/crypto/ppapi_decryptor.h
diff --git a/webkit/media/crypto/ppapi_decryptor.h b/webkit/media/crypto/ppapi_decryptor.h
new file mode 100644
index 0000000000000000000000000000000000000000..df497418c75e5656bd1696c44fba7178c8d5b572
--- /dev/null
+++ b/webkit/media/crypto/ppapi_decryptor.h
@@ -0,0 +1,67 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WEBKIT_MEDIA_CRYPTO_PPAPI_DECRYPTOR_H_
+#define WEBKIT_MEDIA_CRYPTO_PPAPI_DECRYPTOR_H_
+
+#include <string>
+
+#include "base/memory/ref_counted.h"
+#include "media/base/decryptor.h"
+
+namespace media {
+class DecryptorClient;
+}
+
+namespace webkit {
+namespace ppapi {
+class PluginInstance;
+}
+}
+
+namespace WebKit {
+class WebFrame;
+class WebMediaPlayerClient;
+}
+
+namespace webkit_media {
+
+class PpapiDecryptor : public media::Decryptor {
+ public:
+ explicit PpapiDecryptor(media::DecryptorClient* client);
+ virtual ~PpapiDecryptor();
+
+ // Returns true if initialization succeeds.
+ bool Init(const std::string& key_system,
+ WebKit::WebMediaPlayerClient* web_media_player_client,
+ WebKit::WebFrame* web_frame);
+
+ // media::Decryptor implementation.
+ virtual void GenerateKeyRequest(const std::string& key_system,
+ const uint8* init_data,
+ int init_data_length) OVERRIDE;
+ virtual void AddKey(const std::string& key_system,
+ const uint8* key,
+ int key_length,
+ const uint8* init_data,
+ int init_data_length,
+ const std::string& session_id) OVERRIDE;
+ virtual void CancelKeyRequest(const std::string& key_system,
+ const std::string& session_id) OVERRIDE;
+ virtual void Decrypt(const scoped_refptr<media::DecoderBuffer>& encrypted,
+ const DecryptCB& decrypt_cb) OVERRIDE;
+
+ private:
+ // Callback for the plugin to hand back the decrypted data.
+ void DataReady(const DecryptCB& decrypt_cb, const uint8* data, int data_size);
+
+ media::DecryptorClient* client_;
+ scoped_refptr<webkit::ppapi::PluginInstance> cdm_plugin_;
ddorwin 2012/07/19 01:12:34 Does this need to be a refptr?
xhwang 2012/07/19 15:54:34 PluginInstance is ref counted: http://code.google.
+
+ DISALLOW_COPY_AND_ASSIGN(PpapiDecryptor);
+};
+
+} // namespace webkit_media
+
+#endif // WEBKIT_MEDIA_CRYPTO_PPAPI_DECRYPTOR_H_

Powered by Google App Engine
This is Rietveld 408576698