| 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 6df9c2df0da640b74d505aba25716b0ff90de5a5..a9401c0df0bc757a241f47f397aa4f7384ae5610 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);
|
| }
|
| }
|
|
|