| Index: ppapi/proxy/plugin_dispatcher.cc
|
| diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc
|
| index 037b470241f7cdf089635995382472f767e6d524..a6c97a0512d62d8e97d04e6c30e4205fd3e3f967 100644
|
| --- a/ppapi/proxy/plugin_dispatcher.cc
|
| +++ b/ppapi/proxy/plugin_dispatcher.cc
|
| @@ -66,6 +66,10 @@ void PluginDispatcher::SetGlobal(PluginDispatcher* dispatcher) {
|
| g_dispatcher = dispatcher;
|
| }
|
|
|
| +bool PluginDispatcher::IsPlugin() const {
|
| + return true;
|
| +}
|
| +
|
| void PluginDispatcher::OnMessageReceived(const IPC::Message& msg) {
|
| if (msg.routing_id() == MSG_ROUTING_CONTROL) {
|
| // Handle some plugin-specific control messages.
|
|
|