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