Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: webkit/plugins/ppapi/ppb_input_event_impl.cc

Issue 7621070: Merge the plugin and impl side of the audio config and input event resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed compile issues Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698