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

Unified Diff: ppapi/proxy/ppb_broker_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_broker_proxy.h ('k') | ppapi/proxy/ppb_buffer_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_broker_proxy.cc
diff --git a/ppapi/proxy/ppb_broker_proxy.cc b/ppapi/proxy/ppb_broker_proxy.cc
index d0f711214cfbbaf9c219a7e2bc1b07fdc2fc5251..d65af6685620944970038bf39a1b641031e79b5a 100644
--- a/ppapi/proxy/ppb_broker_proxy.cc
+++ b/ppapi/proxy/ppb_broker_proxy.cc
@@ -112,7 +112,7 @@ int32_t Broker::Connect(PP_CompletionCallback connect_callback) {
bool success = PluginDispatcher::GetForResource(this)->Send(
new PpapiHostMsg_PPBBroker_Connect(
- INTERFACE_ID_PPB_BROKER, host_resource()));
+ API_ID_PPB_BROKER, host_resource()));
return success ? PP_OK_COMPLETIONPENDING : PP_ERROR_FAILED;
}
@@ -160,7 +160,7 @@ PP_Resource PPB_Broker_Proxy::CreateProxyResource(PP_Instance instance) {
HostResource result;
dispatcher->Send(new PpapiHostMsg_PPBBroker_Create(
- INTERFACE_ID_PPB_BROKER, instance, &result));
+ API_ID_PPB_BROKER, instance, &result));
if (result.is_null())
return 0;
return (new Broker(result))->GetReference();
@@ -248,7 +248,7 @@ void PPB_Broker_Proxy::ConnectCompleteInHost(int32_t result,
foreign_socket_handle == IPC::InvalidPlatformFileForTransit());
bool success = dispatcher()->Send(new PpapiMsg_PPBBroker_ConnectComplete(
- INTERFACE_ID_PPB_BROKER, broker, foreign_socket_handle, result));
+ API_ID_PPB_BROKER, broker, foreign_socket_handle, result));
if (!success || result != PP_OK) {
// The plugin did not receive the handle, so it must be closed.
« no previous file with comments | « ppapi/proxy/ppb_broker_proxy.h ('k') | ppapi/proxy/ppb_buffer_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698