| 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 PPAPI_THUNK_RESOURCE_CREATION_API_H_ | 5 #ifndef PPAPI_THUNK_RESOURCE_CREATION_API_H_ |
| 6 #define PPAPI_THUNK_RESOURCE_CREATION_API_H_ | 6 #define PPAPI_THUNK_RESOURCE_CREATION_API_H_ |
| 7 | 7 |
| 8 #include "ppapi/c/dev/ppb_audio_input_dev.h" | 8 #include "ppapi/c/dev/ppb_audio_input_dev.h" |
| 9 #include "ppapi/c/dev/ppb_file_chooser_dev.h" | 9 #include "ppapi/c/dev/ppb_file_chooser_dev.h" |
| 10 #include "ppapi/c/dev/ppb_video_layer_dev.h" | 10 #include "ppapi/c/dev/ppb_video_layer_dev.h" |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 virtual PP_Resource CreateVideoLayer(PP_Instance instance, | 133 virtual PP_Resource CreateVideoLayer(PP_Instance instance, |
| 134 PP_VideoLayerMode_Dev mode) = 0; | 134 PP_VideoLayerMode_Dev mode) = 0; |
| 135 virtual PP_Resource CreateWebSocket(PP_Instance instance) = 0; | 135 virtual PP_Resource CreateWebSocket(PP_Instance instance) = 0; |
| 136 virtual PP_Resource CreateWheelInputEvent( | 136 virtual PP_Resource CreateWheelInputEvent( |
| 137 PP_Instance instance, | 137 PP_Instance instance, |
| 138 PP_TimeTicks time_stamp, | 138 PP_TimeTicks time_stamp, |
| 139 uint32_t modifiers, | 139 uint32_t modifiers, |
| 140 const PP_FloatPoint* wheel_delta, | 140 const PP_FloatPoint* wheel_delta, |
| 141 const PP_FloatPoint* wheel_ticks, | 141 const PP_FloatPoint* wheel_ticks, |
| 142 PP_Bool scroll_by_page) = 0; | 142 PP_Bool scroll_by_page) = 0; |
| 143 virtual PP_Resource CreateX509Certificate(PP_Instance instance) = 0; |
| 143 | 144 |
| 144 static const ApiID kApiID = API_ID_RESOURCE_CREATION; | 145 static const ApiID kApiID = API_ID_RESOURCE_CREATION; |
| 145 }; | 146 }; |
| 146 | 147 |
| 147 } // namespace thunk | 148 } // namespace thunk |
| 148 } // namespace ppapi | 149 } // namespace ppapi |
| 149 | 150 |
| 150 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_ | 151 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_ |
| OLD | NEW |