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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 const PP_Var& accept_mime_types) OVERRIDE; | 62 const PP_Var& accept_mime_types) OVERRIDE; |
63 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; | 63 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; |
64 virtual PP_Resource CreateFileRef(PP_Resource file_system, | 64 virtual PP_Resource CreateFileRef(PP_Resource file_system, |
65 const char* path) OVERRIDE; | 65 const char* path) OVERRIDE; |
66 virtual PP_Resource CreateFileSystem(PP_Instance instance, | 66 virtual PP_Resource CreateFileSystem(PP_Instance instance, |
67 PP_FileSystemType type) OVERRIDE; | 67 PP_FileSystemType type) OVERRIDE; |
68 virtual PP_Resource CreateFlashMenu(PP_Instance instance, | 68 virtual PP_Resource CreateFlashMenu(PP_Instance instance, |
69 const PP_Flash_Menu* menu_data) OVERRIDE; | 69 const PP_Flash_Menu* menu_data) OVERRIDE; |
70 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; | 70 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; |
71 virtual PP_Resource CreateFlashTCPSocket(PP_Instance instance) OVERRIDE; | 71 virtual PP_Resource CreateFlashTCPSocket(PP_Instance instance) OVERRIDE; |
| 72 virtual PP_Resource CreateFlashUDPSocket(PP_Instance instance, |
| 73 int32_t family) OVERRIDE; |
72 virtual PP_Resource CreateFontObject( | 74 virtual PP_Resource CreateFontObject( |
73 PP_Instance instance, | 75 PP_Instance instance, |
74 const PP_FontDescription_Dev* description) OVERRIDE; | 76 const PP_FontDescription_Dev* description) OVERRIDE; |
75 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, | 77 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, |
76 const PP_Size& size, | 78 const PP_Size& size, |
77 PP_Bool is_always_opaque) OVERRIDE; | 79 PP_Bool is_always_opaque) OVERRIDE; |
78 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 80 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
79 PP_Resource share_context, | 81 PP_Resource share_context, |
80 const int32_t* attrib_list) OVERRIDE; | 82 const int32_t* attrib_list) OVERRIDE; |
81 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, | 83 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 | 153 |
152 Dispatcher* dispatcher_; | 154 Dispatcher* dispatcher_; |
153 | 155 |
154 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 156 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
155 }; | 157 }; |
156 | 158 |
157 } // namespace proxy | 159 } // namespace proxy |
158 } // namespace ppapi | 160 } // namespace ppapi |
159 | 161 |
160 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 162 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |