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 WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "ppapi/shared_impl/function_group_base.h" | 10 #include "ppapi/shared_impl/function_group_base.h" |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
65 virtual PP_Resource CreateGraphics3D(PP_Instance instance, | 65 virtual PP_Resource CreateGraphics3D(PP_Instance instance, |
66 PP_Resource share_context, | 66 PP_Resource share_context, |
67 const int32_t* attrib_list) OVERRIDE; | 67 const int32_t* attrib_list) OVERRIDE; |
68 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, | 68 virtual PP_Resource CreateGraphics3DRaw(PP_Instance instance, |
69 PP_Resource share_context, | 69 PP_Resource share_context, |
70 const int32_t* attrib_list) OVERRIDE; | 70 const int32_t* attrib_list) OVERRIDE; |
71 virtual PP_Resource CreateImageData(PP_Instance instance, | 71 virtual PP_Resource CreateImageData(PP_Instance instance, |
72 PP_ImageDataFormat format, | 72 PP_ImageDataFormat format, |
73 const PP_Size& size, | 73 const PP_Size& size, |
74 PP_Bool init_to_zero) OVERRIDE; | 74 PP_Bool init_to_zero) OVERRIDE; |
75 virtual PP_Resource CreateHostResolverPrivate(PP_Instance instance) OVERRIDE; | |
yzshen1
2012/02/28 08:29:00
Sort alphabetically, please. (And also the corresp
ygorshenin1
2012/02/28 12:09:47
Done.
| |
75 virtual PP_Resource CreateKeyboardInputEvent( | 76 virtual PP_Resource CreateKeyboardInputEvent( |
76 PP_Instance instance, | 77 PP_Instance instance, |
77 PP_InputEvent_Type type, | 78 PP_InputEvent_Type type, |
78 PP_TimeTicks time_stamp, | 79 PP_TimeTicks time_stamp, |
79 uint32_t modifiers, | 80 uint32_t modifiers, |
80 uint32_t key_code, | 81 uint32_t key_code, |
81 PP_Var character_text) OVERRIDE; | 82 PP_Var character_text) OVERRIDE; |
82 virtual PP_Resource CreateMouseInputEvent( | 83 virtual PP_Resource CreateMouseInputEvent( |
83 PP_Instance instance, | 84 PP_Instance instance, |
84 PP_InputEvent_Type type, | 85 PP_InputEvent_Type type, |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
122 PP_Bool scroll_by_page) OVERRIDE; | 123 PP_Bool scroll_by_page) OVERRIDE; |
123 | 124 |
124 private: | 125 private: |
125 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 126 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
126 }; | 127 }; |
127 | 128 |
128 } // namespace ppapi | 129 } // namespace ppapi |
129 } // namespace webkit | 130 } // namespace webkit |
130 | 131 |
131 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 132 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |