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