OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/shared_impl/function_group_base.h" | 10 #include "ppapi/shared_impl/function_group_base.h" |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 virtual PP_Resource CreateURLRequestInfo( | 103 virtual PP_Resource CreateURLRequestInfo( |
104 PP_Instance instance, | 104 PP_Instance instance, |
105 const ::ppapi::PPB_URLRequestInfo_Data& data) OVERRIDE; | 105 const ::ppapi::PPB_URLRequestInfo_Data& data) OVERRIDE; |
106 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 106 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
107 virtual PP_Resource CreateVideoDecoder( | 107 virtual PP_Resource CreateVideoDecoder( |
108 PP_Instance instance, | 108 PP_Instance instance, |
109 PP_Resource context3d_id, | 109 PP_Resource context3d_id, |
110 PP_VideoDecoder_Profile profile) OVERRIDE; | 110 PP_VideoDecoder_Profile profile) OVERRIDE; |
111 virtual PP_Resource CreateVideoLayer(PP_Instance instance, | 111 virtual PP_Resource CreateVideoLayer(PP_Instance instance, |
112 PP_VideoLayerMode_Dev mode) OVERRIDE; | 112 PP_VideoLayerMode_Dev mode) OVERRIDE; |
| 113 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
113 virtual PP_Resource CreateWheelInputEvent( | 114 virtual PP_Resource CreateWheelInputEvent( |
114 PP_Instance instance, | 115 PP_Instance instance, |
115 PP_TimeTicks time_stamp, | 116 PP_TimeTicks time_stamp, |
116 uint32_t modifiers, | 117 uint32_t modifiers, |
117 const PP_FloatPoint* wheel_delta, | 118 const PP_FloatPoint* wheel_delta, |
118 const PP_FloatPoint* wheel_ticks, | 119 const PP_FloatPoint* wheel_ticks, |
119 PP_Bool scroll_by_page) OVERRIDE; | 120 PP_Bool scroll_by_page) OVERRIDE; |
120 | 121 |
121 private: | 122 private: |
122 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 123 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
123 }; | 124 }; |
124 | 125 |
125 } // namespace ppapi | 126 } // namespace ppapi |
126 } // namespace webkit | 127 } // namespace webkit |
127 | 128 |
128 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 129 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |