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; |
79 virtual PP_Resource CreateImageData(PP_Instance instance, | 83 virtual PP_Resource CreateImageData(PP_Instance instance, |
80 PP_ImageDataFormat format, | 84 PP_ImageDataFormat format, |
81 const PP_Size& size, | 85 const PP_Size& size, |
82 PP_Bool init_to_zero) OVERRIDE; | 86 PP_Bool init_to_zero) OVERRIDE; |
83 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 87 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
84 PP_Bool vertical) OVERRIDE; | 88 PP_Bool vertical) OVERRIDE; |
85 virtual PP_Resource CreateSurface3D(PP_Instance instance, | 89 virtual PP_Resource CreateSurface3D(PP_Instance instance, |
86 PP_Config3D_Dev config, | 90 PP_Config3D_Dev config, |
87 const int32_t* attrib_list) OVERRIDE; | 91 const int32_t* attrib_list) OVERRIDE; |
88 virtual PP_Resource CreateTransport(PP_Instance instance, | 92 virtual PP_Resource CreateTransport(PP_Instance instance, |
(...skipping 28 matching lines...) Expand all Loading... |
117 | 121 |
118 Dispatcher* dispatcher_; | 122 Dispatcher* dispatcher_; |
119 | 123 |
120 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 124 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
121 }; | 125 }; |
122 | 126 |
123 } // namespace proxy | 127 } // namespace proxy |
124 } // namespace pp | 128 } // namespace pp |
125 | 129 |
126 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 130 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |