| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 uint32_t size) OVERRIDE; | 113 uint32_t size) OVERRIDE; |
| 114 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 114 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
| 115 PP_Bool vertical) OVERRIDE; | 115 PP_Bool vertical) OVERRIDE; |
| 116 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; | 116 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; |
| 117 virtual PP_Resource CreateTCPServerSocketPrivate( | 117 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 118 PP_Instance instance) OVERRIDE; | 118 PP_Instance instance) OVERRIDE; |
| 119 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 119 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 120 | 120 |
| 121 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 121 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 122 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; | 122 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; |
| 123 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | |
| 124 virtual PP_Resource CreateVideoDecoder( | 123 virtual PP_Resource CreateVideoDecoder( |
| 125 PP_Instance instance, | 124 PP_Instance instance, |
| 126 PP_Resource graphics3d_id, | 125 PP_Resource graphics3d_id, |
| 127 PP_VideoDecoder_Profile profile) OVERRIDE; | 126 PP_VideoDecoder_Profile profile) OVERRIDE; |
| 128 virtual PP_Resource CreateWheelInputEvent( | 127 virtual PP_Resource CreateWheelInputEvent( |
| 129 PP_Instance instance, | 128 PP_Instance instance, |
| 130 PP_TimeTicks time_stamp, | 129 PP_TimeTicks time_stamp, |
| 131 uint32_t modifiers, | 130 uint32_t modifiers, |
| 132 const PP_FloatPoint* wheel_delta, | 131 const PP_FloatPoint* wheel_delta, |
| 133 const PP_FloatPoint* wheel_ticks, | 132 const PP_FloatPoint* wheel_ticks, |
| 134 PP_Bool scroll_by_page) OVERRIDE; | 133 PP_Bool scroll_by_page) OVERRIDE; |
| 135 virtual PP_Resource CreateX509CertificatePrivate( | 134 virtual PP_Resource CreateX509CertificatePrivate( |
| 136 PP_Instance instance) OVERRIDE; | 135 PP_Instance instance) OVERRIDE; |
| 137 | 136 |
| 138 private: | 137 private: |
| 139 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 138 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 140 }; | 139 }; |
| 141 | 140 |
| 142 } // namespace ppapi | 141 } // namespace ppapi |
| 143 } // namespace webkit | 142 } // namespace webkit |
| 144 | 143 |
| 145 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 144 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |