| 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 CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 virtual PP_Resource CreateTCPSocket1_0(PP_Instance instance) OVERRIDE; | 119 virtual PP_Resource CreateTCPSocket1_0(PP_Instance instance) OVERRIDE; |
| 120 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; | 120 virtual PP_Resource CreateTCPSocket(PP_Instance instance) OVERRIDE; |
| 121 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 121 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 122 virtual PP_Resource CreateTouchInputEvent(PP_Instance instance, | 122 virtual PP_Resource CreateTouchInputEvent(PP_Instance instance, |
| 123 PP_InputEvent_Type type, | 123 PP_InputEvent_Type type, |
| 124 PP_TimeTicks time_stamp, | 124 PP_TimeTicks time_stamp, |
| 125 uint32_t modifiers) OVERRIDE; | 125 uint32_t modifiers) OVERRIDE; |
| 126 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; | 126 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; |
| 127 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 127 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 128 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 128 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
| 129 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) OVERRIDE; |
| 129 virtual PP_Resource CreateVideoDecoderDev(PP_Instance instance, | 130 virtual PP_Resource CreateVideoDecoderDev(PP_Instance instance, |
| 130 PP_Resource graphics3d_id, | 131 PP_Resource graphics3d_id, |
| 131 PP_VideoDecoder_Profile profile) | 132 PP_VideoDecoder_Profile profile) |
| 132 OVERRIDE; | 133 OVERRIDE; |
| 133 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; | 134 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; |
| 134 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; | 135 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; |
| 135 virtual PP_Resource CreateWheelInputEvent(PP_Instance instance, | 136 virtual PP_Resource CreateWheelInputEvent(PP_Instance instance, |
| 136 PP_TimeTicks time_stamp, | 137 PP_TimeTicks time_stamp, |
| 137 uint32_t modifiers, | 138 uint32_t modifiers, |
| 138 const PP_FloatPoint* wheel_delta, | 139 const PP_FloatPoint* wheel_delta, |
| 139 const PP_FloatPoint* wheel_ticks, | 140 const PP_FloatPoint* wheel_ticks, |
| 140 PP_Bool scroll_by_page) OVERRIDE; | 141 PP_Bool scroll_by_page) OVERRIDE; |
| 141 virtual PP_Resource CreateX509CertificatePrivate(PP_Instance instance) | 142 virtual PP_Resource CreateX509CertificatePrivate(PP_Instance instance) |
| 142 OVERRIDE; | 143 OVERRIDE; |
| 143 | 144 |
| 144 private: | 145 private: |
| 145 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 146 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 146 }; | 147 }; |
| 147 | 148 |
| 148 } // namespace content | 149 } // namespace content |
| 149 | 150 |
| 150 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 151 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |