OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PPAPI_SHARED_IMPL_PPB_VIEW_SHARED_H_ | 5 #ifndef PPAPI_SHARED_IMPL_PPB_VIEW_SHARED_H_ |
6 #define PPAPI_SHARED_IMPL_PPB_VIEW_SHARED_H_ | 6 #define PPAPI_SHARED_IMPL_PPB_VIEW_SHARED_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "ppapi/c/pp_rect.h" | 9 #include "ppapi/c/pp_rect.h" |
10 #include "ppapi/c/pp_size.h" | 10 #include "ppapi/c/pp_size.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 PPB_View_Shared(ResourceObjectType type, | 36 PPB_View_Shared(ResourceObjectType type, |
37 PP_Instance instance, | 37 PP_Instance instance, |
38 const ViewData& data); | 38 const ViewData& data); |
39 virtual ~PPB_View_Shared(); | 39 virtual ~PPB_View_Shared(); |
40 | 40 |
41 // Resource overrides. | 41 // Resource overrides. |
42 virtual thunk::PPB_View_API* AsPPB_View_API() OVERRIDE; | 42 virtual thunk::PPB_View_API* AsPPB_View_API() OVERRIDE; |
43 | 43 |
44 // PPB_View_API implementation. | 44 // PPB_View_API implementation. |
45 virtual const ViewData& GetData() const OVERRIDE; | 45 virtual const ViewData& GetData() const OVERRIDE; |
| 46 virtual PP_Bool GetRect(PP_Rect* viewport) const OVERRIDE; |
| 47 virtual PP_Bool IsFullscreen() const OVERRIDE; |
| 48 virtual PP_Bool IsVisible() const OVERRIDE; |
| 49 virtual PP_Bool IsPageVisible() const OVERRIDE; |
| 50 virtual PP_Bool GetClipRect(PP_Rect* clip) const |
| 51 OVERRIDE; |
| 52 virtual float GetDeviceScale() const OVERRIDE; |
| 53 virtual float GetCSSScale() const OVERRIDE; |
46 | 54 |
47 private: | 55 private: |
48 ViewData data_; | 56 ViewData data_; |
49 | 57 |
50 DISALLOW_COPY_AND_ASSIGN(PPB_View_Shared); | 58 DISALLOW_COPY_AND_ASSIGN(PPB_View_Shared); |
51 }; | 59 }; |
52 | 60 |
53 } // namespace ppapi | 61 } // namespace ppapi |
54 | 62 |
55 #endif // PPAPI_SHARED_IMPL_PPB_VIEW_SHARED_H_ | 63 #endif // PPAPI_SHARED_IMPL_PPB_VIEW_SHARED_H_ |
OLD | NEW |