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

Unified Diff: ppapi/proxy/ppp_input_event_proxy.cc

Issue 8333004: Rename InterfaceID to ApiID and move the file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged Created 9 years, 2 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
« no previous file with comments | « ppapi/proxy/ppp_graphics_3d_proxy.cc ('k') | ppapi/proxy/ppp_instance_private_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
diff --git a/ppapi/proxy/ppp_input_event_proxy.cc b/ppapi/proxy/ppp_input_event_proxy.cc
index 7d72dfe8f80f4e29e0d4fd672ae3f7e32c628d09..0215e72091f18e99eb95b94a867aea7e9e50afde 100644
--- a/ppapi/proxy/ppp_input_event_proxy.cc
+++ b/ppapi/proxy/ppp_input_event_proxy.cc
@@ -40,10 +40,10 @@ PP_Bool HandleInputEvent(PP_Instance instance, PP_Resource input_event) {
PP_Bool result = PP_FALSE;
if (data.is_filtered) {
dispatcher->Send(new PpapiMsg_PPPInputEvent_HandleFilteredInputEvent(
- INTERFACE_ID_PPP_INPUT_EVENT, instance, data, &result));
+ API_ID_PPP_INPUT_EVENT, instance, data, &result));
} else {
dispatcher->Send(new PpapiMsg_PPPInputEvent_HandleInputEvent(
- INTERFACE_ID_PPP_INPUT_EVENT, instance, data));
+ API_ID_PPP_INPUT_EVENT, instance, data));
}
return result;
}
@@ -75,7 +75,7 @@ const InterfaceProxy::Info* PPP_InputEvent_Proxy::GetInfo() {
static const Info info = {
&input_event_interface,
PPP_INPUT_EVENT_INTERFACE,
- INTERFACE_ID_PPP_INPUT_EVENT,
+ API_ID_PPP_INPUT_EVENT,
false,
&CreateInputEventProxy,
};
« no previous file with comments | « ppapi/proxy/ppp_graphics_3d_proxy.cc ('k') | ppapi/proxy/ppp_instance_private_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698