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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; | 74 virtual PP_Resource CreateFlashNetConnector(PP_Instance instance) OVERRIDE; |
75 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, | 75 virtual PP_Resource CreateGraphics2D(PP_Instance pp_instance, |
76 const PP_Size& size, | 76 const PP_Size& size, |
77 PP_Bool is_always_opaque) OVERRIDE; | 77 PP_Bool is_always_opaque) OVERRIDE; |
78 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 78 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
79 PP_Resource share_context, | 79 PP_Resource share_context, |
80 const int32_t* attrib_list) OVERRIDE; | 80 const int32_t* attrib_list) OVERRIDE; |
81 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, | 81 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, |
82 PP_Resource share_context, | 82 PP_Resource share_context, |
83 const int32_t* attrib_list) OVERRIDE; | 83 const int32_t* attrib_list) OVERRIDE; |
| 84 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; |
84 virtual PP_Resource CreateImageData(PP_Instance instance, | 85 virtual PP_Resource CreateImageData(PP_Instance instance, |
85 PP_ImageDataFormat format, | 86 PP_ImageDataFormat format, |
86 const PP_Size& size, | 87 const PP_Size& size, |
87 PP_Bool init_to_zero) OVERRIDE; | 88 PP_Bool init_to_zero) OVERRIDE; |
88 virtual PP_Resource CreateKeyboardInputEvent( | 89 virtual PP_Resource CreateKeyboardInputEvent( |
89 PP_Instance instance, | 90 PP_Instance instance, |
90 PP_InputEvent_Type type, | 91 PP_InputEvent_Type type, |
91 PP_TimeTicks time_stamp, | 92 PP_TimeTicks time_stamp, |
92 uint32_t modifiers, | 93 uint32_t modifiers, |
93 uint32_t key_code, | 94 uint32_t key_code, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 138 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
138 | 139 |
139 private: | 140 private: |
140 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); | 141 DISALLOW_COPY_AND_ASSIGN(ResourceCreationProxy); |
141 }; | 142 }; |
142 | 143 |
143 } // namespace proxy | 144 } // namespace proxy |
144 } // namespace ppapi | 145 } // namespace ppapi |
145 | 146 |
146 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ | 147 #endif // PPAPI_PROXY_RESOURCE_CREATION_PROXY_H_ |
OLD | NEW |