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

Unified Diff: ppapi/proxy/ppp_input_event_proxy.cc

Issue 8849003: Rename the shared_impl resource files to give them more regular names. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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
« no previous file with comments | « ppapi/proxy/ppb_video_decoder_proxy.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppp_input_event_proxy.cc
===================================================================
--- ppapi/proxy/ppp_input_event_proxy.cc (revision 113419)
+++ ppapi/proxy/ppp_input_event_proxy.cc (working copy)
@@ -11,7 +11,7 @@
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/plugin_resource_tracker.h"
#include "ppapi/proxy/ppapi_messages.h"
-#include "ppapi/shared_impl/input_event_impl.h"
+#include "ppapi/shared_impl/ppb_input_event_shared.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppb_input_event_api.h"
@@ -96,8 +96,8 @@
void PPP_InputEvent_Proxy::OnMsgHandleInputEvent(PP_Instance instance,
const InputEventData& data) {
- scoped_refptr<InputEventImpl> resource(new InputEventImpl(
- InputEventImpl::InitAsProxy(), instance, data));
+ scoped_refptr<PPB_InputEvent_Shared> resource(new PPB_InputEvent_Shared(
+ PPB_InputEvent_Shared::InitAsProxy(), instance, data));
ppp_input_event_impl_->HandleInputEvent(instance, resource->pp_resource());
}
@@ -105,8 +105,8 @@
PP_Instance instance,
const InputEventData& data,
PP_Bool* result) {
- scoped_refptr<InputEventImpl> resource(new InputEventImpl(
- InputEventImpl::InitAsProxy(), instance, data));
+ scoped_refptr<PPB_InputEvent_Shared> resource(new PPB_InputEvent_Shared(
+ PPB_InputEvent_Shared::InitAsProxy(), instance, data));
*result = ppp_input_event_impl_->HandleInputEvent(instance,
resource->pp_resource());
}
« no previous file with comments | « ppapi/proxy/ppb_video_decoder_proxy.cc ('k') | ppapi/proxy/resource_creation_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698