OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 PP_VideoLayerMode_Dev mode) OVERRIDE; | 108 PP_VideoLayerMode_Dev mode) OVERRIDE; |
109 virtual PP_Resource CreateWheelInputEvent( | 109 virtual PP_Resource CreateWheelInputEvent( |
110 PP_Instance instance, | 110 PP_Instance instance, |
111 PP_TimeTicks time_stamp, | 111 PP_TimeTicks time_stamp, |
112 uint32_t modifiers, | 112 uint32_t modifiers, |
113 const PP_FloatPoint* wheel_delta, | 113 const PP_FloatPoint* wheel_delta, |
114 const PP_FloatPoint* wheel_ticks, | 114 const PP_FloatPoint* wheel_ticks, |
115 PP_Bool scroll_by_page) OVERRIDE; | 115 PP_Bool scroll_by_page) OVERRIDE; |
116 | 116 |
117 private: | 117 private: |
118 PluginInstance* instance_; | |
119 | |
120 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); | 118 DISALLOW_COPY_AND_ASSIGN(ResourceCreationImpl); |
121 }; | 119 }; |
122 | 120 |
123 } // namespace ppapi | 121 } // namespace ppapi |
124 } // namespace webkit | 122 } // namespace webkit |
125 | 123 |
126 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ | 124 #endif // WEBKIT_PLUGINS_PPAPI_RESOURCE_CREATION_IMPL_H_ |
OLD | NEW |