Index: webkit/plugins/ppapi/ppb_input_event_impl.cc |
diff --git a/webkit/plugins/ppapi/ppb_input_event_impl.cc b/webkit/plugins/ppapi/ppb_input_event_impl.cc |
deleted file mode 100644 |
index 2bbe7021305599e0a94fbfffce12d5338ca306fb..0000000000000000000000000000000000000000 |
--- a/webkit/plugins/ppapi/ppb_input_event_impl.cc |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "webkit/plugins/ppapi/ppb_input_event_impl.h" |
- |
-#include "ppapi/shared_impl/var.h" |
-#include "webkit/plugins/ppapi/plugin_module.h" |
-#include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
-#include "webkit/plugins/ppapi/resource_helper.h" |
- |
-using ppapi::InputEventData; |
-using ppapi::InputEventImpl; |
-using ppapi::StringVar; |
-using ppapi::thunk::PPB_InputEvent_API; |
- |
-namespace webkit { |
-namespace ppapi { |
- |
-PPB_InputEvent_Impl::PPB_InputEvent_Impl(PP_Instance instance, |
- const InputEventData& data) |
- : Resource(instance), |
- InputEventImpl(data) { |
-} |
- |
-PPB_InputEvent_API* PPB_InputEvent_Impl::AsPPB_InputEvent_API() { |
- return this; |
-} |
- |
-PP_Var PPB_InputEvent_Impl::StringToPPVar(const std::string& str) { |
- return StringVar::StringToPPVar( |
- ResourceHelper::GetPluginModule(this)->pp_module(), str); |
-} |
- |
-} // namespace ppapi |
-} // namespace webkit |