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

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

Issue 7669055: Remove webkit::ppapi::Resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix self-assignment 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
index 48bc3fbeec3f0e26d6be487447882c8c10a25e60..e6787582f4e55f9aa9dcebe8b9a24e42b6d75d98 100644
--- a/webkit/plugins/ppapi/ppb_input_event_impl.h
+++ b/webkit/plugins/ppapi/ppb_input_event_impl.h
@@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "ppapi/shared_impl/input_event_impl.h"
-#include "webkit/plugins/ppapi/resource.h"
+#include "ppapi/shared_impl/resource.h"
namespace ppapi {
struct InputEventData;
@@ -12,15 +12,12 @@ struct InputEventData;
namespace webkit {
namespace ppapi {
-class PPB_InputEvent_Impl : public Resource,
+class PPB_InputEvent_Impl : public ::ppapi::Resource,
public ::ppapi::InputEventImpl {
public:
- PPB_InputEvent_Impl(PluginInstance* instance,
+ PPB_InputEvent_Impl(PP_Instance instance,
const ::ppapi::InputEventData& data);
- static PP_Resource Create(PluginInstance* instance,
- const ::ppapi::InputEventData& data);
-
// Resource overrides.
virtual ::ppapi::thunk::PPB_InputEvent_API* AsPPB_InputEvent_API() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698