summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/ppapi/ppb_video_layer_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/plugins/ppapi/ppb_video_layer_impl.h')
-rw-r--r--webkit/plugins/ppapi/ppb_video_layer_impl.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/webkit/plugins/ppapi/ppb_video_layer_impl.h b/webkit/plugins/ppapi/ppb_video_layer_impl.h
index 6d7195e..091608f 100644
--- a/webkit/plugins/ppapi/ppb_video_layer_impl.h
+++ b/webkit/plugins/ppapi/ppb_video_layer_impl.h
@@ -19,16 +19,19 @@ class PluginInstance;
class PPB_VideoLayer_Impl : public Resource,
public ::ppapi::thunk::PPB_VideoLayer_API {
public:
- explicit PPB_VideoLayer_Impl(PluginInstance* instance);
virtual ~PPB_VideoLayer_Impl();
- static PP_Resource Create(PP_Instance instance, PP_VideoLayerMode_Dev mode);
+ static PP_Resource Create(PluginInstance* instance,
+ PP_VideoLayerMode_Dev mode);
// ResourceObjectBase override.
virtual PPB_VideoLayer_API* AsPPB_VideoLayer_API() OVERRIDE;
// Derived classes must implement PPB_VideoLayer_API.
+ protected:
+ explicit PPB_VideoLayer_Impl(PluginInstance* instance);
+
private:
DISALLOW_COPY_AND_ASSIGN(PPB_VideoLayer_Impl);
};