OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "ppapi/thunk/resource_creation_api.h" | 10 #include "ppapi/thunk/resource_creation_api.h" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; | 43 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; |
44 virtual PP_Resource CreateFileChooser( | 44 virtual PP_Resource CreateFileChooser( |
45 PP_Instance instance, | 45 PP_Instance instance, |
46 PP_FileChooserMode_Dev mode, | 46 PP_FileChooserMode_Dev mode, |
47 const char* accept_types) OVERRIDE; | 47 const char* accept_types) OVERRIDE; |
48 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; | 48 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; |
49 virtual PP_Resource CreateFileRef(PP_Resource file_system, | 49 virtual PP_Resource CreateFileRef(PP_Resource file_system, |
50 const char* path) OVERRIDE; | 50 const char* path) OVERRIDE; |
51 virtual PP_Resource CreateFileSystem(PP_Instance instance, | 51 virtual PP_Resource CreateFileSystem(PP_Instance instance, |
52 PP_FileSystemType type) OVERRIDE; | 52 PP_FileSystemType type) OVERRIDE; |
| 53 virtual PP_Resource CreateFlashDeviceID(PP_Instance instance) OVERRIDE; |
53 virtual PP_Resource CreateFlashMenu(PP_Instance instance, | 54 virtual PP_Resource CreateFlashMenu(PP_Instance instance, |
54 const PP_Flash_Menu* menu_data) OVERRIDE; | 55 const PP_Flash_Menu* menu_data) OVERRIDE; |
55 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; | 56 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; |
56 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, | 57 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, |
57 const PP_Size& size, | 58 const PP_Size& size, |
58 PP_Bool is_always_opaque) OVERRIDE; | 59 PP_Bool is_always_opaque) OVERRIDE; |
59 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 60 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
60 PP_Resource share_context, | 61 PP_Resource share_context, |
61 const int32_t* attrib_list) OVERRIDE; | 62 const int32_t* attrib_list) OVERRIDE; |
62 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, | 63 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 PP_Instance instance) OVERRIDE; | 131 PP_Instance instance) OVERRIDE; |
131 | 132 |
132 private: | 133 private: |
133 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 134 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
134 }; | 135 }; |
135 | 136 |
136 } // namespace ppapi | 137 } // namespace ppapi |
137 } // namespace webkit | 138 } // namespace webkit |
138 | 139 |
139 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 140 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |