summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/plugin_dispatcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/proxy/plugin_dispatcher.cc')
-rw-r--r--ppapi/proxy/plugin_dispatcher.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc
index c036c01..dba5253 100644
--- a/ppapi/proxy/plugin_dispatcher.cc
+++ b/ppapi/proxy/plugin_dispatcher.cc
@@ -199,7 +199,7 @@ WebKitForwarding* PluginDispatcher::GetWebKitForwarding() {
return plugin_delegate_->GetWebKitForwarding();
}
-FunctionGroupBase* PluginDispatcher::GetFunctionAPI(InterfaceID id) {
+FunctionGroupBase* PluginDispatcher::GetFunctionAPI(ApiID id) {
return GetInterfaceProxy(id);
}
@@ -215,7 +215,7 @@ void PluginDispatcher::ForceFreeAllInstances() {
if (i->second == this) {
// Synthesize an "instance destroyed" message, this will notify the
// plugin and also remove it from our list of tracked plugins.
- PpapiMsg_PPPInstance_DidDestroy msg(INTERFACE_ID_PPP_INSTANCE, i->first);
+ PpapiMsg_PPPInstance_DidDestroy msg(API_ID_PPP_INSTANCE, i->first);
OnMessageReceived(msg);
}
}