| 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 25 matching lines...) Expand all Loading... |
| 36 PPB_AudioInput_Callback audio_input_callback, | 36 PPB_AudioInput_Callback audio_input_callback, |
| 37 void* user_data) OVERRIDE; | 37 void* user_data) OVERRIDE; |
| 38 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; | 38 virtual PP_Resource CreateAudioInput(PP_Instance instance) OVERRIDE; |
| 39 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE; | 39 virtual PP_Resource CreateBroker(PP_Instance instance) OVERRIDE; |
| 40 virtual PP_Resource CreateBrowserFont( | 40 virtual PP_Resource CreateBrowserFont( |
| 41 PP_Instance instance, | 41 PP_Instance instance, |
| 42 const PP_BrowserFont_Trusted_Description* description) OVERRIDE; | 42 const PP_BrowserFont_Trusted_Description* description) OVERRIDE; |
| 43 virtual PP_Resource CreateBuffer(PP_Instance instance, | 43 virtual PP_Resource CreateBuffer(PP_Instance instance, |
| 44 uint32_t size) OVERRIDE; | 44 uint32_t size) OVERRIDE; |
| 45 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; | 45 virtual PP_Resource CreateDirectoryReader(PP_Resource directory_ref) OVERRIDE; |
| 46 virtual PP_Resource CreateFileChooser( | |
| 47 PP_Instance instance, | |
| 48 PP_FileChooserMode_Dev mode, | |
| 49 const char* accept_types) OVERRIDE; | |
| 50 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; | 46 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE; |
| 51 virtual PP_Resource CreateFileRef(PP_Resource file_system, | 47 virtual PP_Resource CreateFileRef(PP_Resource file_system, |
| 52 const char* path) OVERRIDE; | 48 const char* path) OVERRIDE; |
| 53 virtual PP_Resource CreateFileSystem(PP_Instance instance, | 49 virtual PP_Resource CreateFileSystem(PP_Instance instance, |
| 54 PP_FileSystemType type) OVERRIDE; | 50 PP_FileSystemType type) OVERRIDE; |
| 55 virtual PP_Resource CreateFlashDeviceID(PP_Instance instance) OVERRIDE; | 51 virtual PP_Resource CreateFlashDeviceID(PP_Instance instance) OVERRIDE; |
| 56 virtual PP_Resource CreateFlashMenu(PP_Instance instance, | 52 virtual PP_Resource CreateFlashMenu(PP_Instance instance, |
| 57 const PP_Flash_Menu* menu_data) OVERRIDE; | 53 const PP_Flash_Menu* menu_data) OVERRIDE; |
| 58 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; | 54 virtual PP_Resource CreateFlashMessageLoop(PP_Instance instance) OVERRIDE; |
| 59 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, | 55 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 PP_Instance instance) OVERRIDE; | 134 PP_Instance instance) OVERRIDE; |
| 139 | 135 |
| 140 private: | 136 private: |
| 141 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 137 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 142 }; | 138 }; |
| 143 | 139 |
| 144 } // namespace ppapi | 140 } // namespace ppapi |
| 145 } // namespace webkit | 141 } // namespace webkit |
| 146 | 142 |
| 147 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 143 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |