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 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 PP_InputEvent_Type type, | 72 PP_InputEvent_Type type, |
73 PP_TimeTicks time_stamp, | 73 PP_TimeTicks time_stamp, |
74 uint32_t modifiers) OVERRIDE; | 74 uint32_t modifiers) OVERRIDE; |
75 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 75 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
76 const PP_Resource elements[], | 76 const PP_Resource elements[], |
77 uint32_t size) OVERRIDE; | 77 uint32_t size) OVERRIDE; |
78 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; | 78 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; |
79 virtual PP_Resource CreateURLRequestInfo( | 79 virtual PP_Resource CreateURLRequestInfo( |
80 PP_Instance instance, | 80 PP_Instance instance, |
81 const URLRequestInfoData& data) OVERRIDE; | 81 const URLRequestInfoData& data) OVERRIDE; |
| 82 virtual PP_Resource CreateURLResponseInfo( |
| 83 PP_Instance instance, |
| 84 const URLResponseInfoData& data, |
| 85 PP_Resource file_ref_resource) OVERRIDE; |
82 virtual PP_Resource CreateWheelInputEvent( | 86 virtual PP_Resource CreateWheelInputEvent( |
83 PP_Instance instance, | 87 PP_Instance instance, |
84 PP_TimeTicks time_stamp, | 88 PP_TimeTicks time_stamp, |
85 uint32_t modifiers, | 89 uint32_t modifiers, |
86 const PP_FloatPoint* wheel_delta, | 90 const PP_FloatPoint* wheel_delta, |
87 const PP_FloatPoint* wheel_ticks, | 91 const PP_FloatPoint* wheel_ticks, |
88 PP_Bool scroll_by_page) OVERRIDE; | 92 PP_Bool scroll_by_page) OVERRIDE; |
89 | 93 |
90 virtual PP_Resource CreateAudio(PP_Instance instance, | 94 virtual PP_Resource CreateAudio(PP_Instance instance, |
91 PP_Resource config_id, | 95 PP_Resource config_id, |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 | 166 |
163 private: | 167 private: |
164 Connection GetConnection(); | 168 Connection GetConnection(); |
165 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 169 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
166 }; | 170 }; |
167 | 171 |
168 } // namespace proxy | 172 } // namespace proxy |
169 } // namespace ppapi | 173 } // namespace ppapi |
170 | 174 |
171 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 175 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |