| Index: ppapi/shared_impl/ppb_view_shared.h
|
| diff --git a/ppapi/shared_impl/ppb_view_shared.h b/ppapi/shared_impl/ppb_view_shared.h
|
| index e3d41acbb28e0e792a2f5f104ce624ca790fd8ab..77bf8f2011b19cd99b848b952799d91b3f3bacaa 100644
|
| --- a/ppapi/shared_impl/ppb_view_shared.h
|
| +++ b/ppapi/shared_impl/ppb_view_shared.h
|
| @@ -43,6 +43,14 @@ class PPAPI_SHARED_EXPORT PPB_View_Shared
|
|
|
| // PPB_View_API implementation.
|
| virtual const ViewData& GetData() const OVERRIDE;
|
| + virtual PP_Bool GetRect(PP_Rect* viewport) const OVERRIDE;
|
| + virtual PP_Bool IsFullscreen() const OVERRIDE;
|
| + virtual PP_Bool IsVisible() const OVERRIDE;
|
| + virtual PP_Bool IsPageVisible() const OVERRIDE;
|
| + virtual PP_Bool GetClipRect(PP_Rect* clip) const
|
| + OVERRIDE;
|
| + virtual float GetDeviceScale() const OVERRIDE;
|
| + virtual float GetCSSScale() const OVERRIDE;
|
|
|
| private:
|
| ViewData data_;
|
|
|