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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 uint32_t modifiers) OVERRIDE; | 126 uint32_t modifiers) OVERRIDE; |
127 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; | 127 virtual PP_Resource CreateUDPSocket(PP_Instance instance) OVERRIDE; |
128 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | 128 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; |
129 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 129 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
130 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) OVERRIDE; | 130 virtual PP_Resource CreateVideoDecoder(PP_Instance instance) OVERRIDE; |
131 virtual PP_Resource CreateVideoDecoderDev(PP_Instance instance, | 131 virtual PP_Resource CreateVideoDecoderDev(PP_Instance instance, |
132 PP_Resource graphics3d_id, | 132 PP_Resource graphics3d_id, |
133 PP_VideoDecoder_Profile profile) | 133 PP_VideoDecoder_Profile profile) |
134 OVERRIDE; | 134 OVERRIDE; |
135 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; | 135 virtual PP_Resource CreateVideoDestination(PP_Instance instance) OVERRIDE; |
| 136 virtual PP_Resource CreateVideoEncoder(PP_Instance instance) OVERRIDE; |
136 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; | 137 virtual PP_Resource CreateVideoSource(PP_Instance instance) OVERRIDE; |
137 virtual PP_Resource CreateWheelInputEvent(PP_Instance instance, | 138 virtual PP_Resource CreateWheelInputEvent(PP_Instance instance, |
138 PP_TimeTicks time_stamp, | 139 PP_TimeTicks time_stamp, |
139 uint32_t modifiers, | 140 uint32_t modifiers, |
140 const PP_FloatPoint* wheel_delta, | 141 const PP_FloatPoint* wheel_delta, |
141 const PP_FloatPoint* wheel_ticks, | 142 const PP_FloatPoint* wheel_ticks, |
142 PP_Bool scroll_by_page) OVERRIDE; | 143 PP_Bool scroll_by_page) OVERRIDE; |
143 virtual PP_Resource CreateX509CertificatePrivate(PP_Instance instance) | 144 virtual PP_Resource CreateX509CertificatePrivate(PP_Instance instance) |
144 OVERRIDE; | 145 OVERRIDE; |
145 | 146 |
146 private: | 147 private: |
147 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 148 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
148 }; | 149 }; |
149 | 150 |
150 } // namespace content | 151 } // namespace content |
151 | 152 |
152 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 153 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |