Index: ppapi/proxy/plugin_dispatcher.cc |
diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc |
index ad3e7a066429e8197c10501680bfb414f68b5564..c3e96e28ce98ab089ce79e00cef45c07d6985c9b 100644 |
--- a/ppapi/proxy/plugin_dispatcher.cc |
+++ b/ppapi/proxy/plugin_dispatcher.cc |
@@ -223,7 +223,8 @@ bool PluginDispatcher::OnMessageReceived(const IPC::Message& msg) { |
// Handle some plugin-specific control messages. |
bool handled = true; |
IPC_BEGIN_MESSAGE_MAP(PluginDispatcher, msg) |
- IPC_MESSAGE_HANDLER(PpapiMsg_SupportsInterface, OnMsgSupportsInterface) |
+ IPC_MESSAGE_HANDLER(PpapiMsg_IsInterfaceSupported, |
+ OnMsgIsInterfaceSupported) |
IPC_MESSAGE_HANDLER(PpapiMsg_SetPreferences, OnMsgSetPreferences) |
IPC_MESSAGE_UNHANDLED(handled = false); |
IPC_END_MESSAGE_MAP() |
@@ -297,7 +298,7 @@ void PluginDispatcher::ForceFreeAllInstances() { |
} |
} |
-void PluginDispatcher::OnMsgSupportsInterface( |
+void PluginDispatcher::OnMsgIsInterfaceSupported( |
const std::string& interface_name, |
bool* result) { |
*result = !!GetPluginInterface(interface_name); |