| Index: content/renderer/pepper/ppb_widget_impl.h
|
| diff --git a/content/renderer/pepper/ppb_widget_impl.h b/content/renderer/pepper/ppb_widget_impl.h
|
| index f8f02623d7c30118d7e8177b59a02d0bd201d686..001b96ffaaf4c20e5b0a69abe84f2b7d4c8855fb 100644
|
| --- a/content/renderer/pepper/ppb_widget_impl.h
|
| +++ b/content/renderer/pepper/ppb_widget_impl.h
|
| @@ -28,20 +28,20 @@ class PPB_Widget_Impl : public ppapi::Resource,
|
| explicit PPB_Widget_Impl(PP_Instance instance);
|
|
|
| // Resource overrides.
|
| - virtual ppapi::thunk::PPB_Widget_API* AsPPB_Widget_API() override;
|
| + ppapi::thunk::PPB_Widget_API* AsPPB_Widget_API() override;
|
|
|
| // PPB_WidgetAPI implementation.
|
| - virtual PP_Bool Paint(const PP_Rect* rect, PP_Resource) override;
|
| - virtual PP_Bool HandleEvent(PP_Resource pp_input_event) override;
|
| - virtual PP_Bool GetLocation(PP_Rect* location) override;
|
| - virtual void SetLocation(const PP_Rect* location) override;
|
| - virtual void SetScale(float scale) override;
|
| + PP_Bool Paint(const PP_Rect* rect, PP_Resource) override;
|
| + PP_Bool HandleEvent(PP_Resource pp_input_event) override;
|
| + PP_Bool GetLocation(PP_Rect* location) override;
|
| + void SetLocation(const PP_Rect* location) override;
|
| + void SetScale(float scale) override;
|
|
|
| // Notifies the plugin instance that the given rect needs to be repainted.
|
| void Invalidate(const PP_Rect* dirty);
|
|
|
| protected:
|
| - virtual ~PPB_Widget_Impl();
|
| + ~PPB_Widget_Impl() override;
|
|
|
| virtual PP_Bool PaintInternal(const gfx::Rect& rect,
|
| PPB_ImageData_Impl* image) = 0;
|
|
|