| Index: content/renderer/pepper/video_decoder_shim.cc
|
| diff --git a/content/renderer/pepper/video_decoder_shim.cc b/content/renderer/pepper/video_decoder_shim.cc
|
| index 9dab8b96ae2631f9d17930cc2c6ea3ff419f8f68..265eb2f2f33c369886c9271417357845b3bb6ac3 100644
|
| --- a/content/renderer/pepper/video_decoder_shim.cc
|
| +++ b/content/renderer/pepper/video_decoder_shim.cc
|
| @@ -10,6 +10,7 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| +#include "base/macros.h"
|
| #include "base/thread_task_runner_handle.h"
|
| #ifndef NDEBUG
|
| #include "base/logging.h"
|
| @@ -955,7 +956,7 @@ void VideoDecoderShim::AssignPictureBuffers(
|
| SendPictures();
|
| }
|
|
|
| -void VideoDecoderShim::ReusePictureBuffer(int32 picture_buffer_id) {
|
| +void VideoDecoderShim::ReusePictureBuffer(int32_t picture_buffer_id) {
|
| DCHECK(RenderThreadImpl::current());
|
| uint32_t texture_id = static_cast<uint32_t>(picture_buffer_id);
|
| if (textures_to_dismiss_.find(texture_id) != textures_to_dismiss_.end()) {
|
|
|