Index: ppapi/proxy/ppb_video_decoder_proxy.cc |
diff --git a/ppapi/proxy/ppb_video_decoder_proxy.cc b/ppapi/proxy/ppb_video_decoder_proxy.cc |
index 91b91c688ebe2e3cc2172a4445ee6de8d6751368..850ae6e51db0092b1f2e229a700490ed72df04b6 100644 |
--- a/ppapi/proxy/ppb_video_decoder_proxy.cc |
+++ b/ppapi/proxy/ppb_video_decoder_proxy.cc |
@@ -23,7 +23,7 @@ using ppapi::thunk::PPB_VideoDecoder_API; |
namespace ppapi { |
namespace proxy { |
-class VideoDecoder : public Resource, public VideoDecoderImpl { |
+class VideoDecoder : public Resource, public PPB_VideoDecoder_Shared { |
public: |
// You must call Init() before using this class. |
explicit VideoDecoder(const HostResource& resource); |
@@ -132,7 +132,7 @@ void VideoDecoder::Destroy() { |
FlushCommandBuffer(); |
GetDispatcher()->Send(new PpapiHostMsg_PPBVideoDecoder_Destroy( |
API_ID_PPB_VIDEO_DECODER_DEV, host_resource())); |
- VideoDecoderImpl::Destroy(); |
+ PPB_VideoDecoder_Shared::Destroy(); |
} |
PluginDispatcher* VideoDecoder::GetDispatcher() const { |