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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 uint32_t modifiers, | 66 uint32_t modifiers, |
67 PP_InputEvent_MouseButton mouse_button, | 67 PP_InputEvent_MouseButton mouse_button, |
68 const PP_Point* mouse_position, | 68 const PP_Point* mouse_position, |
69 int32_t click_count, | 69 int32_t click_count, |
70 const PP_Point* mouse_movement) OVERRIDE; | 70 const PP_Point* mouse_movement) OVERRIDE; |
71 virtual PP_Resource CreateTouchInputEvent( | 71 virtual PP_Resource CreateTouchInputEvent( |
72 PP_Instance instance, | 72 PP_Instance instance, |
73 PP_InputEvent_Type type, | 73 PP_InputEvent_Type type, |
74 PP_TimeTicks time_stamp, | 74 PP_TimeTicks time_stamp, |
75 uint32_t modifiers) OVERRIDE; | 75 uint32_t modifiers) OVERRIDE; |
76 virtual PP_Resource CreateResourceArray(PP_Instance instance, | |
77 const PP_Resource elements[], | |
78 uint32_t size) OVERRIDE; | |
79 virtual PP_Resource CreateTrueTypeFont( | 76 virtual PP_Resource CreateTrueTypeFont( |
80 PP_Instance instance, | 77 PP_Instance instance, |
81 const PP_TrueTypeFontDesc_Dev* desc) OVERRIDE; | 78 const PP_TrueTypeFontDesc_Dev* desc) OVERRIDE; |
82 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; | 79 virtual PP_Resource CreateURLLoader(PP_Instance instance) OVERRIDE; |
83 virtual PP_Resource CreateURLRequestInfo( | 80 virtual PP_Resource CreateURLRequestInfo( |
84 PP_Instance instance) OVERRIDE; | 81 PP_Instance instance) OVERRIDE; |
85 virtual PP_Resource CreateWheelInputEvent( | 82 virtual PP_Resource CreateWheelInputEvent( |
86 PP_Instance instance, | 83 PP_Instance instance, |
87 PP_TimeTicks time_stamp, | 84 PP_TimeTicks time_stamp, |
88 uint32_t modifiers, | 85 uint32_t modifiers, |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 | 179 |
183 private: | 180 private: |
184 Connection GetConnection(); | 181 Connection GetConnection(); |
185 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 182 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
186 }; | 183 }; |
187 | 184 |
188 } // namespace proxy | 185 } // namespace proxy |
189 } // namespace ppapi | 186 } // namespace ppapi |
190 | 187 |
191 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 188 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |