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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 const PP_Flash_Menu* menu_data) OVERRIDE; | 66 const PP_Flash_Menu* menu_data) OVERRIDE; |
67 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; | 67 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; |
68 virtual PP_Resource CreateFlashTCPSocket(PP_Instance instance) OVERRIDE; | 68 virtual PP_Resource CreateFlashTCPSocket(PP_Instance instance) OVERRIDE; |
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, | |
77 PP_Resource share_context, | 76 PP_Resource share_context, |
78 const int32_t* attrib_list) OVERRIDE; | 77 const int32_t* attrib_list) OVERRIDE; |
79 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, | 78 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, |
80 PP_Config3D_Dev config, | |
81 PP_Resource share_context, | 79 PP_Resource share_context, |
82 const int32_t* attrib_list) OVERRIDE; | 80 const int32_t* attrib_list) OVERRIDE; |
83 virtual PP_Resource CreateImageData(PP_Instance instance, | 81 virtual PP_Resource CreateImageData(PP_Instance instance, |
84 PP_ImageDataFormat format, | 82 PP_ImageDataFormat format, |
85 const PP_Size& size, | 83 const PP_Size& size, |
86 PP_Bool init_to_zero) OVERRIDE; | 84 PP_Bool init_to_zero) OVERRIDE; |
87 virtual PP_Resource CreateKeyboardInputEvent( | 85 virtual PP_Resource CreateKeyboardInputEvent( |
88 PP_Instance instance, | 86 PP_Instance instance, |
89 PP_InputEvent_Type type, | 87 PP_InputEvent_Type type, |
90 PP_TimeTicks time_stamp, | 88 PP_TimeTicks time_stamp, |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 | 144 |
147 Dispatcher* dispatcher_; | 145 Dispatcher* dispatcher_; |
148 | 146 |
149 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 147 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
150 }; | 148 }; |
151 | 149 |
152 } // namespace proxy | 150 } // namespace proxy |
153 } // namespace pp | 151 } // namespace pp |
154 | 152 |
155 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 153 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |