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

Unified Diff: webkit/media/crypto/ppapi/cdm_wrapper.cc

Issue 10918276: Remove checksum in CDM interface and implementations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
« no previous file with comments | « ppapi/c/private/pp_content_decryptor.h ('k') | webkit/media/crypto/ppapi/clear_key_cdm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/media/crypto/ppapi/cdm_wrapper.cc
diff --git a/webkit/media/crypto/ppapi/cdm_wrapper.cc b/webkit/media/crypto/ppapi/cdm_wrapper.cc
index 8a8cb37d26fdb0b469246563086f29c8bc428b16..9bb7a1417fdc3073e8e3d30c0d42517a45433f60 100644
--- a/webkit/media/crypto/ppapi/cdm_wrapper.cc
+++ b/webkit/media/crypto/ppapi/cdm_wrapper.cc
@@ -205,8 +205,6 @@ void CdmWrapper::Decrypt(pp::Buffer_Dev encrypted_buffer,
input_buffer.key_id_size = encrypted_block_info.key_id_size;
input_buffer.iv = encrypted_block_info.iv;
input_buffer.iv_size = encrypted_block_info.iv_size;
- input_buffer.checksum = encrypted_block_info.checksum;
- input_buffer.checksum_size = encrypted_block_info.checksum_size;
input_buffer.num_subsamples = encrypted_block_info.num_subsamples;
std::vector<cdm::SubsampleEntry> subsamples;
for (uint32_t i = 0; i < encrypted_block_info.num_subsamples; ++i) {
« no previous file with comments | « ppapi/c/private/pp_content_decryptor.h ('k') | webkit/media/crypto/ppapi/clear_key_cdm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698