| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 PP_TransportType type) OVERRIDE; | 102 PP_TransportType type) OVERRIDE; |
| 103 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 103 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 104 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; | 104 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; |
| 105 virtual PP_Resource CreateURLRequestInfo( | 105 virtual PP_Resource CreateURLRequestInfo( |
| 106 PP_Instance instance, | 106 PP_Instance instance, |
| 107 const ::ppapi::PPB_URLRequestInfo_Data& data) OVERRIDE; | 107 const ::ppapi::PPB_URLRequestInfo_Data& data) OVERRIDE; |
| 108 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 108 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
| 109 virtual PP_Resource CreateVideoDecoder( | 109 virtual PP_Resource CreateVideoDecoder( |
| 110 PP_Instance instance, | 110 PP_Instance instance, |
| 111 PP_Resource graphics3d_id, | 111 PP_Resource graphics3d_id, |
| 112 PP_VideoDecoder_Profile profile) OVERRIDE; | 112 PP_VideoDecoder_Profile profile, |
| 113 const PP_Size& frame_size, |
| 114 const uint8_t* extra_data, |
| 115 uint32_t extra_data_size) OVERRIDE; |
| 113 virtual PP_Resource CreateVideoLayer(PP_Instance instance, | 116 virtual PP_Resource CreateVideoLayer(PP_Instance instance, |
| 114 PP_VideoLayerMode_Dev mode) OVERRIDE; | 117 PP_VideoLayerMode_Dev mode) OVERRIDE; |
| 115 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; | 118 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
| 116 virtual PP_Resource CreateWheelInputEvent( | 119 virtual PP_Resource CreateWheelInputEvent( |
| 117 PP_Instance instance, | 120 PP_Instance instance, |
| 118 PP_TimeTicks time_stamp, | 121 PP_TimeTicks time_stamp, |
| 119 uint32_t modifiers, | 122 uint32_t modifiers, |
| 120 const PP_FloatPoint* wheel_delta, | 123 const PP_FloatPoint* wheel_delta, |
| 121 const PP_FloatPoint* wheel_ticks, | 124 const PP_FloatPoint* wheel_ticks, |
| 122 PP_Bool scroll_by_page) OVERRIDE; | 125 PP_Bool scroll_by_page) OVERRIDE; |
| 123 virtual PP_Resource CreateX509CertificatePrivate( | 126 virtual PP_Resource CreateX509CertificatePrivate( |
| 124 PP_Instance instance) OVERRIDE; | 127 PP_Instance instance) OVERRIDE; |
| 125 | 128 |
| 126 private: | 129 private: |
| 127 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 130 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 128 }; | 131 }; |
| 129 | 132 |
| 130 } // namespace ppapi | 133 } // namespace ppapi |
| 131 } // namespace webkit | 134 } // namespace webkit |
| 132 | 135 |
| 133 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 136 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |