| 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 WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 void* user_data) OVERRIDE; | 99 void* user_data) OVERRIDE; |
| 100 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 100 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
| 101 const PP_Resource elements[], | 101 const PP_Resource elements[], |
| 102 uint32_t size) OVERRIDE; | 102 uint32_t size) OVERRIDE; |
| 103 virtual PP_Resource CreateScrollbar(PP_Instance instance, | 103 virtual PP_Resource CreateScrollbar(PP_Instance instance, |
| 104 PP_Bool vertical) OVERRIDE; | 104 PP_Bool vertical) OVERRIDE; |
| 105 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; | 105 virtual PP_Resource CreateTalk(PP_Instance instance) OVERRIDE; |
| 106 virtual PP_Resource CreateTCPServerSocketPrivate( | 106 virtual PP_Resource CreateTCPServerSocketPrivate( |
| 107 PP_Instance instance) OVERRIDE; | 107 PP_Instance instance) OVERRIDE; |
| 108 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; | 108 virtual PP_Resource CreateTCPSocketPrivate(PP_Instance instance) OVERRIDE; |
| 109 | |
| 110 virtual PP_Resource CreateUDPSocketPrivate(PP_Instance instance) OVERRIDE; | |
| 111 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; | 109 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; |
| 112 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 110 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
| 113 virtual PP_Resource CreateVideoDecoder( | 111 virtual PP_Resource CreateVideoDecoder( |
| 114 PP_Instance instance, | 112 PP_Instance instance, |
| 115 PP_Resource graphics3d_id, | 113 PP_Resource graphics3d_id, |
| 116 PP_VideoDecoder_Profile profile) OVERRIDE; | 114 PP_VideoDecoder_Profile profile) OVERRIDE; |
| 117 virtual PP_Resource CreateWheelInputEvent( | 115 virtual PP_Resource CreateWheelInputEvent( |
| 118 PP_Instance instance, | 116 PP_Instance instance, |
| 119 PP_TimeTicks time_stamp, | 117 PP_TimeTicks time_stamp, |
| 120 uint32_t modifiers, | 118 uint32_t modifiers, |
| 121 const PP_FloatPoint* wheel_delta, | 119 const PP_FloatPoint* wheel_delta, |
| 122 const PP_FloatPoint* wheel_ticks, | 120 const PP_FloatPoint* wheel_ticks, |
| 123 PP_Bool scroll_by_page) OVERRIDE; | 121 PP_Bool scroll_by_page) OVERRIDE; |
| 124 virtual PP_Resource CreateX509CertificatePrivate( | 122 virtual PP_Resource CreateX509CertificatePrivate( |
| 125 PP_Instance instance) OVERRIDE; | 123 PP_Instance instance) OVERRIDE; |
| 126 | 124 |
| 127 private: | 125 private: |
| 128 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 126 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
| 129 }; | 127 }; |
| 130 | 128 |
| 131 } // namespace ppapi | 129 } // namespace ppapi |
| 132 } // namespace webkit | 130 } // namespace webkit |
| 133 | 131 |
| 134 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 132 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
| OLD | NEW |