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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 uint32_t modifiers) OVERRIDE; | 80 uint32_t modifiers) OVERRIDE; |
81 virtual PP_Resource CreateResourceArray(PP_Instance instance, | 81 virtual PP_Resource CreateResourceArray(PP_Instance instance, |
82 const PP_Resource elements[], | 82 const PP_Resource elements[], |
83 uint32_t size) OVERRIDE; | 83 uint32_t size) OVERRIDE; |
84 virtual PP_Resource CreateTrueTypeFont( | 84 virtual PP_Resource CreateTrueTypeFont( |
85 PP_Instance instance, | 85 PP_Instance instance, |
86 const PP_TrueTypeFontDesc_Dev* desc) OVERRIDE; | 86 const PP_TrueTypeFontDesc_Dev* desc) OVERRIDE; |
87 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; | 87 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; |
88 virtual PP_Resource CreateURLRequestInfo( | 88 virtual PP_Resource CreateURLRequestInfo( |
89 PP_Instance instance) OVERRIDE; | 89 PP_Instance instance) OVERRIDE; |
90 virtual PP_Resource CreateURLResponseInfo( | |
91 PP_Instance instance, | |
92 const URLResponseInfoData& data, | |
93 PP_Resource file_ref_resource) OVERRIDE; | |
94 virtual PP_Resource CreateWheelInputEvent( | 90 virtual PP_Resource CreateWheelInputEvent( |
95 PP_Instance instance, | 91 PP_Instance instance, |
96 PP_TimeTicks time_stamp, | 92 PP_TimeTicks time_stamp, |
97 uint32_t modifiers, | 93 uint32_t modifiers, |
98 const PP_FloatPoint* wheel_delta, | 94 const PP_FloatPoint* wheel_delta, |
99 const PP_FloatPoint* wheel_ticks, | 95 const PP_FloatPoint* wheel_ticks, |
100 PP_Bool scroll_by_page) OVERRIDE; | 96 PP_Bool scroll_by_page) OVERRIDE; |
101 | 97 |
102 virtual PP_Resource CreateAudio(PP_Instance instance, | 98 virtual PP_Resource CreateAudio(PP_Instance instance, |
103 PP_Resource config_id, | 99 PP_Resource config_id, |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 | 170 |
175 private: | 171 private: |
176 Connection GetConnection(); | 172 Connection GetConnection(); |
177 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 173 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
178 }; | 174 }; |
179 | 175 |
180 } // namespace proxy | 176 } // namespace proxy |
181 } // namespace ppapi | 177 } // namespace ppapi |
182 | 178 |
183 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 179 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |