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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 virtual PP_Resource CreateTouchInputEvent( | 70 virtual PP_Resource CreateTouchInputEvent( |
71 PP_Instance instance, | 71 PP_Instance instance, |
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 CreateTrueTypeFont( | 78 virtual PP_Resource CreateTrueTypeFont( |
79 PP_Instance instance, | 79 PP_Instance instance, |
80 const PP_TrueTypeFontDesc_Dev& desc) OVERRIDE; | 80 const PP_TrueTypeFontDesc_Dev* desc) OVERRIDE; |
81 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; | 81 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; |
82 virtual PP_Resource CreateURLRequestInfo( | 82 virtual PP_Resource CreateURLRequestInfo( |
83 PP_Instance instance) OVERRIDE; | 83 PP_Instance instance) OVERRIDE; |
84 virtual PP_Resource CreateURLResponseInfo( | 84 virtual PP_Resource CreateURLResponseInfo( |
85 PP_Instance instance, | 85 PP_Instance instance, |
86 const URLResponseInfoData& data, | 86 const URLResponseInfoData& data, |
87 PP_Resource file_ref_resource) OVERRIDE; | 87 PP_Resource file_ref_resource) OVERRIDE; |
88 virtual PP_Resource CreateWheelInputEvent( | 88 virtual PP_Resource CreateWheelInputEvent( |
89 PP_Instance instance, | 89 PP_Instance instance, |
90 PP_TimeTicks time_stamp, | 90 PP_TimeTicks time_stamp, |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 | 169 |
170 private: | 170 private: |
171 Connection GetConnection(); | 171 Connection GetConnection(); |
172 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 172 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
173 }; | 173 }; |
174 | 174 |
175 } // namespace proxy | 175 } // namespace proxy |
176 } // namespace ppapi | 176 } // namespace ppapi |
177 | 177 |
178 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 178 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |