| Index: ppapi/cpp/private/content_decryptor_private.cc
|
| diff --git a/ppapi/cpp/private/content_decryptor_private.cc b/ppapi/cpp/private/content_decryptor_private.cc
|
| index 633215a6d4cfcb0284a7e51d76bf6a9259150d32..77847cb4b6b8843e3d3ecbdf60115b3089a70449 100644
|
| --- a/ppapi/cpp/private/content_decryptor_private.cc
|
| +++ b/ppapi/cpp/private/content_decryptor_private.cc
|
| @@ -214,12 +214,12 @@ void ContentDecryptor_Private::KeyError(const std::string& key_system,
|
| }
|
|
|
| void ContentDecryptor_Private::DeliverBlock(
|
| - pp::Buffer_Dev decrypted_block,
|
| + PP_Resource decrypted_block,
|
| const PP_DecryptedBlockInfo& decrypted_block_info) {
|
| if (has_interface<PPB_ContentDecryptor_Private>()) {
|
| get_interface<PPB_ContentDecryptor_Private>()->DeliverBlock(
|
| associated_instance_.pp_instance(),
|
| - decrypted_block.pp_resource(),
|
| + decrypted_block,
|
| &decrypted_block_info);
|
| }
|
| }
|
|
|