summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/ppapi/ppb_video_decoder_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/plugins/ppapi/ppb_video_decoder_impl.h')
-rw-r--r--webkit/plugins/ppapi/ppb_video_decoder_impl.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/webkit/plugins/ppapi/ppb_video_decoder_impl.h b/webkit/plugins/ppapi/ppb_video_decoder_impl.h
index 169ebed..cc4527e 100644
--- a/webkit/plugins/ppapi/ppb_video_decoder_impl.h
+++ b/webkit/plugins/ppapi/ppb_video_decoder_impl.h
@@ -32,8 +32,6 @@ class PPB_VideoDecoder_Impl : public Resource {
// Resource overrides.
virtual PPB_VideoDecoder_Impl* AsPPB_VideoDecoder_Impl();
- PluginInstance* instance() { return instance_.get(); }
-
// PPB_VideoDecoder implementation.
bool Init(const PP_VideoDecoderConfig_Dev& decoder_config);
bool Decode(PP_VideoCompressedDataBuffer_Dev& input_buffer);
@@ -44,7 +42,6 @@ class PPB_VideoDecoder_Impl : public Resource {
// This is NULL before initialization, and if this PPB_VideoDecoder_Impl is
// swapped with another.
scoped_ptr<PluginDelegate::PlatformVideoDecoder> platform_video_decoder_;
- scoped_refptr<PluginInstance> instance_;
DISALLOW_COPY_AND_ASSIGN(PPB_VideoDecoder_Impl);
};