Index: ppapi/proxy/ppb_video_decoder_proxy.cc |
=================================================================== |
--- ppapi/proxy/ppb_video_decoder_proxy.cc (revision 113300) |
+++ ppapi/proxy/ppb_video_decoder_proxy.cc (working copy) |
@@ -23,7 +23,7 @@ |
namespace ppapi { |
namespace proxy { |
-class VideoDecoder : public Resource, public PPB_VideoDecoder_Shared { |
+class VideoDecoder : public Resource, public VideoDecoderImpl { |
public: |
// You must call Init() before using this class. |
explicit VideoDecoder(const HostResource& resource); |
@@ -132,7 +132,7 @@ |
FlushCommandBuffer(); |
GetDispatcher()->Send(new PpapiHostMsg_PPBVideoDecoder_Destroy( |
API_ID_PPB_VIDEO_DECODER_DEV, host_resource())); |
- PPB_VideoDecoder_Shared::Destroy(); |
+ VideoDecoderImpl::Destroy(); |
} |
PluginDispatcher* VideoDecoder::GetDispatcher() const { |