| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 PP_Resource CreateUDPSocket(PP_Instance instance) override; | 125 PP_Resource CreateUDPSocket(PP_Instance instance) override; |
| 126 PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; | 126 PP_Resource CreateUDPSocketPrivate(PP_Instance instance) override; |
| 127 PP_Resource CreateVideoCapture(PP_Instance instance) override; | 127 PP_Resource CreateVideoCapture(PP_Instance instance) override; |
| 128 PP_Resource CreateVideoDecoder(PP_Instance instance) override; | 128 PP_Resource CreateVideoDecoder(PP_Instance instance) override; |
| 129 PP_Resource CreateVideoDecoderDev(PP_Instance instance, | 129 PP_Resource CreateVideoDecoderDev(PP_Instance instance, |
| 130 PP_Resource graphics3d_id, | 130 PP_Resource graphics3d_id, |
| 131 PP_VideoDecoder_Profile profile) override; | 131 PP_VideoDecoder_Profile profile) override; |
| 132 PP_Resource CreateVideoDestination(PP_Instance instance) override; | 132 PP_Resource CreateVideoDestination(PP_Instance instance) override; |
| 133 PP_Resource CreateVideoEncoder(PP_Instance instance) override; | 133 PP_Resource CreateVideoEncoder(PP_Instance instance) override; |
| 134 PP_Resource CreateVideoSource(PP_Instance instance) override; | 134 PP_Resource CreateVideoSource(PP_Instance instance) override; |
| 135 PP_Resource CreateVpnProvider(PP_Instance instance) override; |
| 135 PP_Resource CreateWheelInputEvent(PP_Instance instance, | 136 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 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; | 142 PP_Resource CreateX509CertificatePrivate(PP_Instance instance) override; |
| 142 | 143 |
| 143 private: | 144 private: |
| 144 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 145 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 145 }; | 146 }; |
| 146 | 147 |
| 147 } // namespace content | 148 } // namespace content |
| 148 | 149 |
| 149 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ | 150 #endif // CONTENT_RENDERER_PEPPER_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |