| 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 PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 5 #ifndef PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| 6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 6 #define PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 virtual PP_Resource CreateURLRequestInfo( | 116 virtual PP_Resource CreateURLRequestInfo( |
| 117 PP_Instance instance, | 117 PP_Instance instance, |
| 118 const PPB_URLRequestInfo_Data& data) OVERRIDE; | 118 const PPB_URLRequestInfo_Data& data) OVERRIDE; |
| 119 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; | 119 virtual PP_Resource CreateVideoCapture(PP_Instance instance) OVERRIDE; |
| 120 virtual PP_Resource CreateVideoDecoder( | 120 virtual PP_Resource CreateVideoDecoder( |
| 121 PP_Instance instance, | 121 PP_Instance instance, |
| 122 PP_Resource context3d_id, | 122 PP_Resource context3d_id, |
| 123 PP_VideoDecoder_Profile profile) OVERRIDE; | 123 PP_VideoDecoder_Profile profile) OVERRIDE; |
| 124 virtual PP_Resource CreateVideoLayer(PP_Instance instance, | 124 virtual PP_Resource CreateVideoLayer(PP_Instance instance, |
| 125 PP_VideoLayerMode_Dev mode) OVERRIDE; | 125 PP_VideoLayerMode_Dev mode) OVERRIDE; |
| 126 virtual PP_Resource CreateWebSocket(PP_Instance instance) OVERRIDE; |
| 126 virtual PP_Resource CreateWheelInputEvent( | 127 virtual PP_Resource CreateWheelInputEvent( |
| 127 PP_Instance instance, | 128 PP_Instance instance, |
| 128 PP_TimeTicks time_stamp, | 129 PP_TimeTicks time_stamp, |
| 129 uint32_t modifiers, | 130 uint32_t modifiers, |
| 130 const PP_FloatPoint* wheel_delta, | 131 const PP_FloatPoint* wheel_delta, |
| 131 const PP_FloatPoint* wheel_ticks, | 132 const PP_FloatPoint* wheel_ticks, |
| 132 PP_Bool scroll_by_page) OVERRIDE; | 133 PP_Bool scroll_by_page) OVERRIDE; |
| 133 | 134 |
| 134 virtual bool Send(IPC::Message* msg) OVERRIDE; | 135 virtual bool Send(IPC::Message* msg) OVERRIDE; |
| 135 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 136 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 152 std::string* image_data_desc, | 153 std::string* image_data_desc, |
| 153 ImageHandle* result_image_handle); | 154 ImageHandle* result_image_handle); |
| 154 | 155 |
| 155 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 156 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
| 156 }; | 157 }; |
| 157 | 158 |
| 158 } // namespace proxy | 159 } // namespace proxy |
| 159 } // namespace ppapi | 160 } // namespace ppapi |
| 160 | 161 |
| 161 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 162 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
| OLD | NEW |