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

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

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.h
diff --git a/webkit/plugins/ppapi/ppb_input_event_impl.h b/webkit/plugins/ppapi/ppb_input_event_impl.h
deleted file mode 100644
index e6787582f4e55f9aa9dcebe8b9a24e42b6d75d98..0000000000000000000000000000000000000000
--- a/webkit/plugins/ppapi/ppb_input_event_impl.h
+++ /dev/null
@@ -1,34 +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 "ppapi/shared_impl/input_event_impl.h"
-#include "ppapi/shared_impl/resource.h"
-
-namespace ppapi {
-struct InputEventData;
-}
-
-namespace webkit {
-namespace ppapi {
-
-class PPB_InputEvent_Impl : public ::ppapi::Resource,
- public ::ppapi::InputEventImpl {
- public:
- PPB_InputEvent_Impl(PP_Instance instance,
- const ::ppapi::InputEventData& data);
-
- // Resource overrides.
- virtual ::ppapi::thunk::PPB_InputEvent_API* AsPPB_InputEvent_API() OVERRIDE;
-
- protected:
- // InputEventImpl implementation.
- virtual PP_Var StringToPPVar(const std::string& str) OVERRIDE;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(PPB_InputEvent_Impl);
-};
-
-} // namespace ppapi
-} // namespace webkit
-

Powered by Google App Engine
This is Rietveld 408576698