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

Unified Diff: ppapi/proxy/ppb_cursor_control_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/ppb_cursor_control_proxy.h ('k') | ppapi/proxy/ppb_file_chooser_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_cursor_control_proxy.cc
diff --git a/ppapi/proxy/ppb_cursor_control_proxy.cc b/ppapi/proxy/ppb_cursor_control_proxy.cc
index 960c0109e6df694e674b8cf8eade529850933a2a..a795975df6167fd0b358e8ad80dc1a82108dbf5e 100644
--- a/ppapi/proxy/ppb_cursor_control_proxy.cc
+++ b/ppapi/proxy/ppb_cursor_control_proxy.cc
@@ -51,7 +51,7 @@ PP_Bool PPB_CursorControl_Proxy::SetCursor(PP_Instance instance,
PP_Bool result = PP_FALSE;
PP_Point empty_point = { 0, 0 };
dispatcher()->Send(new PpapiHostMsg_PPBCursorControl_SetCursor(
- INTERFACE_ID_PPB_CURSORCONTROL,
+ API_ID_PPB_CURSORCONTROL,
instance, static_cast<int32_t>(type), cursor_image_resource,
hot_spot ? *hot_spot : empty_point, &result));
return result;
@@ -60,28 +60,28 @@ PP_Bool PPB_CursorControl_Proxy::SetCursor(PP_Instance instance,
PP_Bool PPB_CursorControl_Proxy::LockCursor(PP_Instance instance) {
PP_Bool result = PP_FALSE;
dispatcher()->Send(new PpapiHostMsg_PPBCursorControl_LockCursor(
- INTERFACE_ID_PPB_CURSORCONTROL, instance, &result));
+ API_ID_PPB_CURSORCONTROL, instance, &result));
return result;
}
PP_Bool PPB_CursorControl_Proxy::UnlockCursor(PP_Instance instance) {
PP_Bool result = PP_FALSE;
dispatcher()->Send(new PpapiHostMsg_PPBCursorControl_UnlockCursor(
- INTERFACE_ID_PPB_CURSORCONTROL, instance, &result));
+ API_ID_PPB_CURSORCONTROL, instance, &result));
return result;
}
PP_Bool PPB_CursorControl_Proxy::HasCursorLock(PP_Instance instance) {
PP_Bool result = PP_FALSE;
dispatcher()->Send(new PpapiHostMsg_PPBCursorControl_HasCursorLock(
- INTERFACE_ID_PPB_CURSORCONTROL, instance, &result));
+ API_ID_PPB_CURSORCONTROL, instance, &result));
return result;
}
PP_Bool PPB_CursorControl_Proxy::CanLockCursor(PP_Instance instance) {
PP_Bool result = PP_FALSE;
dispatcher()->Send(new PpapiHostMsg_PPBCursorControl_CanLockCursor(
- INTERFACE_ID_PPB_CURSORCONTROL, instance, &result));
+ API_ID_PPB_CURSORCONTROL, instance, &result));
return result;
}
« no previous file with comments | « ppapi/proxy/ppb_cursor_control_proxy.h ('k') | ppapi/proxy/ppb_file_chooser_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698