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

Unified Diff: ppapi/proxy/ppb_testing_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_surface_3d_proxy.cc ('k') | ppapi/proxy/ppb_text_input_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_testing_proxy.cc
diff --git a/ppapi/proxy/ppb_testing_proxy.cc b/ppapi/proxy/ppb_testing_proxy.cc
index 470d3da04175a352ad444d23b4bee341acaca4f6..73f9b5bd0451418a238b0e66d99a339169dc295e 100644
--- a/ppapi/proxy/ppb_testing_proxy.cc
+++ b/ppapi/proxy/ppb_testing_proxy.cc
@@ -37,7 +37,7 @@ PP_Bool ReadImageData(PP_Resource graphics_2d,
PP_Bool result = PP_FALSE;
dispatcher->Send(new PpapiHostMsg_PPBTesting_ReadImageData(
- INTERFACE_ID_PPB_TESTING, graphics_2d_object->host_resource(),
+ API_ID_PPB_TESTING, graphics_2d_object->host_resource(),
image_object->host_resource(), *top_left, &result));
return result;
}
@@ -60,7 +60,7 @@ uint32_t GetLiveObjectsForInstance(PP_Instance instance_id) {
uint32_t result = 0;
dispatcher->Send(new PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance(
- INTERFACE_ID_PPB_TESTING, instance_id, &result));
+ API_ID_PPB_TESTING, instance_id, &result));
return result;
}
@@ -99,7 +99,7 @@ const InterfaceProxy::Info* PPB_Testing_Proxy::GetInfo() {
static const Info info = {
&testing_interface,
PPB_TESTING_DEV_INTERFACE,
- INTERFACE_ID_PPB_TESTING,
+ API_ID_PPB_TESTING,
false,
&CreateTestingProxy,
};
« no previous file with comments | « ppapi/proxy/ppb_surface_3d_proxy.cc ('k') | ppapi/proxy/ppb_text_input_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698