| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; | 45 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; |
| 46 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; | 46 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; |
| 47 virtual PP_Resource CreateFileRef(PP_Resource file_system, | 47 virtual PP_Resource CreateFileRef(PP_Resource file_system, |
| 48 const char* path) OVERRIDE; | 48 const char* path) OVERRIDE; |
| 49 virtual PP_Resource CreateFileSystem(PP_Instance instance, | 49 virtual PP_Resource CreateFileSystem(PP_Instance instance, |
| 50 PP_FileSystemType type) OVERRIDE; | 50 PP_FileSystemType type) OVERRIDE; |
| 51 virtual PP_Resource CreateFlashDeviceID(PP_Instance instance) OVERRIDE; | 51 virtual PP_Resource CreateFlashDeviceID(PP_Instance instance) OVERRIDE; |
| 52 virtual PP_Resource CreateFlashMenu(PP_Instance instance, | 52 virtual PP_Resource CreateFlashMenu(PP_Instance instance, |
| 53 const PP_Flash_Menu* menu_data) OVERRIDE; | 53 const PP_Flash_Menu* menu_data) OVERRIDE; |
| 54 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; | 54 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; |
| 55 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, | |
| 56 const PP_Size& size, | |
| 57 PP_Bool is_always_opaque) OVERRIDE; | |
| 58 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 55 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
| 59 PP_Resource share_context, | 56 PP_Resource share_context, |
| 60 const int32_t* attrib_list) OVERRIDE; | 57 const int32_t* attrib_list) OVERRIDE; |
| 61 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, | 58 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, |
| 62 PP_Resource share_context, | 59 PP_Resource share_context, |
| 63 const int32_t* attrib_list) OVERRIDE; | 60 const int32_t* attrib_list) OVERRIDE; |
| 64 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; | 61 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; |
| 65 virtual PP_Resource CreateImageData(PP_Instance instance, | 62 virtual PP_Resource CreateImageData(PP_Instance instance, |
| 66 PP_ImageDataFormat format, | 63 PP_ImageDataFormat format, |
| 67 const PP_Size& size, | 64 const PP_Size& size, |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 PP_Instance instance) OVERRIDE; | 132 PP_Instance instance) OVERRIDE; |
| 136 | 133 |
| 137 private: | 134 private: |
| 138 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 135 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 139 }; | 136 }; |
| 140 | 137 |
| 141 } // namespace ppapi | 138 } // namespace ppapi |
| 142 } // namespace webkit | 139 } // namespace webkit |
| 143 | 140 |
| 144 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 141 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |