| 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 #include "ppapi/shared_impl/input_event_impl.h" | 5 #include "ppapi/shared_impl/input_event_impl.h" |
| 6 #include "webkit/plugins/ppapi/resource.h" | 6 #include "ppapi/shared_impl/resource.h" |
| 7 | 7 |
| 8 namespace ppapi { | 8 namespace ppapi { |
| 9 struct InputEventData; | 9 struct InputEventData; |
| 10 } | 10 } |
| 11 | 11 |
| 12 namespace webkit { | 12 namespace webkit { |
| 13 namespace ppapi { | 13 namespace ppapi { |
| 14 | 14 |
| 15 class PPB_InputEvent_Impl : public Resource, | 15 class PPB_InputEvent_Impl : public ::ppapi::Resource, |
| 16 public ::ppapi::InputEventImpl { | 16 public ::ppapi::InputEventImpl { |
| 17 public: | 17 public: |
| 18 PPB_InputEvent_Impl(PluginInstance* instance, | 18 PPB_InputEvent_Impl(PP_Instance instance, |
| 19 const ::ppapi::InputEventData& data); | 19 const ::ppapi::InputEventData& data); |
| 20 | 20 |
| 21 static PP_Resource Create(PluginInstance* instance, | |
| 22 const ::ppapi::InputEventData& data); | |
| 23 | |
| 24 // Resource overrides. | 21 // Resource overrides. |
| 25 virtual ::ppapi::thunk::PPB_InputEvent_API* AsPPB_InputEvent_API() OVERRIDE; | 22 virtual ::ppapi::thunk::PPB_InputEvent_API* AsPPB_InputEvent_API() OVERRIDE; |
| 26 | 23 |
| 27 protected: | 24 protected: |
| 28 // InputEventImpl implementation. | 25 // InputEventImpl implementation. |
| 29 virtual PP_Var StringToPPVar(const std::string& str) OVERRIDE; | 26 virtual PP_Var StringToPPVar(const std::string& str) OVERRIDE; |
| 30 | 27 |
| 31 private: | 28 private: |
| 32 DISALLOW_COPY_AND_ASSIGN(PPB_InputEvent_Impl); | 29 DISALLOW_COPY_AND_ASSIGN(PPB_InputEvent_Impl); |
| 33 }; | 30 }; |
| 34 | 31 |
| 35 } // namespace ppapi | 32 } // namespace ppapi |
| 36 } // namespace webkit | 33 } // namespace webkit |
| 37 | 34 |
| OLD | NEW |