OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PROXY_RESOURCE_CREATION_PROXY_H_ | 5 #ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 virtual PP_Resource CreateFontObject( | 69 virtual PP_Resource CreateFontObject( |
70 PP_Instance instance, | 70 PP_Instance instance, |
71 const PP_FontDescription_Dev* description) OVERRIDE; | 71 const PP_FontDescription_Dev* description) OVERRIDE; |
72 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, | 72 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, |
73 const PP_Size& size, | 73 const PP_Size& size, |
74 PP_Bool is_always_opaque) OVERRIDE; | 74 PP_Bool is_always_opaque) OVERRIDE; |
75 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 75 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
76 PP_Config3D_Dev config, | 76 PP_Config3D_Dev config, |
77 PP_Resource share_context, | 77 PP_Resource share_context, |
78 const int32_t* attrib_list) OVERRIDE; | 78 const int32_t* attrib_list) OVERRIDE; |
79 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, | |
80 PP_Config3D_Dev config, | |
81 PP_Resource share_context, | |
82 const int32_t* attrib_list) OVERRIDE; | |
83 virtual PP_Resource CreateImageData(PP_Instance instance, | 79 virtual PP_Resource CreateImageData(PP_Instance instance, |
84 PP_ImageDataFormat format, | 80 PP_ImageDataFormat format, |
85 const PP_Size& size, | 81 const PP_Size& size, |
86 PP_Bool init_to_zero) OVERRIDE; | 82 PP_Bool init_to_zero) OVERRIDE; |
87 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 83 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
88 PP_Bool vertical) OVERRIDE; | 84 PP_Bool vertical) OVERRIDE; |
89 virtual PP_Resource CreateSurface3D(PP_Instance instance, | 85 virtual PP_Resource CreateSurface3D(PP_Instance instance, |
90 PP_Config3D_Dev config, | 86 PP_Config3D_Dev config, |
91 const int32_t* attrib_list) OVERRIDE; | 87 const int32_t* attrib_list) OVERRIDE; |
92 virtual PP_Resource CreateTransport(PP_Instance instance, | 88 virtual PP_Resource CreateTransport(PP_Instance instance, |
(...skipping 28 matching lines...) Expand all Loading... |
121 | 117 |
122 Dispatcher* dispatcher_; | 118 Dispatcher* dispatcher_; |
123 | 119 |
124 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 120 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
125 }; | 121 }; |
126 | 122 |
127 } // namespace proxy | 123 } // namespace proxy |
128 } // namespace pp | 124 } // namespace pp |
129 | 125 |
130 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 126 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |