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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "ipc/ipc_channel.h" | 9 #include "ipc/ipc_channel.h" |
10 #include "ppapi/c/pp_bool.h" | 10 #include "ppapi/c/pp_bool.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 uint32_t size) OVERRIDE; | 45 uint32_t size) OVERRIDE; |
46 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; | 46 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; |
47 virtual PP_Resource CreateFileChooser( | 47 virtual PP_Resource CreateFileChooser( |
48 PP_Instance instance, | 48 PP_Instance instance, |
49 const PP_FileChooserOptions_Dev* options) OVERRIDE; | 49 const PP_FileChooserOptions_Dev* options) OVERRIDE; |
50 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; | 50 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; |
51 virtual PP_Resource CreateFileRef(PP_Resource file_system, | 51 virtual PP_Resource CreateFileRef(PP_Resource file_system, |
52 const char* path) OVERRIDE; | 52 const char* path) OVERRIDE; |
53 virtual PP_Resource CreateFileSystem(PP_Instance instance, | 53 virtual PP_Resource CreateFileSystem(PP_Instance instance, |
54 PP_FileSystemType_Dev type) OVERRIDE; | 54 PP_FileSystemType_Dev type) OVERRIDE; |
| 55 virtual PP_Resource CreateFlashMenu(PP_Instance instance, |
| 56 const PP_Flash_Menu* menu_data) OVERRIDE; |
| 57 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; |
55 virtual PP_Resource CreateFontObject( | 58 virtual PP_Resource CreateFontObject( |
56 PP_Instance instance, | 59 PP_Instance instance, |
57 const PP_FontDescription_Dev* description) OVERRIDE; | 60 const PP_FontDescription_Dev* description) OVERRIDE; |
58 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, | 61 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, |
59 const PP_Size& size, | 62 const PP_Size& size, |
60 PP_Bool is_always_opaque) OVERRIDE; | 63 PP_Bool is_always_opaque) OVERRIDE; |
61 virtual PP_Resource CreateImageData(PP_Instance instance, | 64 virtual PP_Resource CreateImageData(PP_Instance instance, |
62 PP_ImageDataFormat format, | 65 PP_ImageDataFormat format, |
63 const PP_Size& size, | 66 const PP_Size& size, |
64 PP_Bool init_to_zero) OVERRIDE; | 67 PP_Bool init_to_zero) OVERRIDE; |
(...skipping 21 matching lines...) Expand all Loading... |
86 | 89 |
87 Dispatcher* dispatcher_; | 90 Dispatcher* dispatcher_; |
88 | 91 |
89 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 92 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
90 }; | 93 }; |
91 | 94 |
92 } // namespace proxy | 95 } // namespace proxy |
93 } // namespace pp | 96 } // namespace pp |
94 | 97 |
95 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 98 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |