diff options
Diffstat (limited to 'ppapi/proxy/host_dispatcher.h')
-rw-r--r-- | ppapi/proxy/host_dispatcher.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ppapi/proxy/host_dispatcher.h b/ppapi/proxy/host_dispatcher.h index 608223d..55ba56b 100644 --- a/ppapi/proxy/host_dispatcher.h +++ b/ppapi/proxy/host_dispatcher.h @@ -27,6 +27,10 @@ namespace IPC { class SyncChannel; } +namespace ppapi { +struct Preferences; +} + namespace pp { namespace proxy { @@ -48,7 +52,8 @@ class HostDispatcher : public Dispatcher { // transferred. virtual bool InitHostWithChannel(Delegate* delegate, const IPC::ChannelHandle& channel_handle, - bool is_client); + bool is_client, + const ppapi::Preferences& preferences); // The host side maintains a mapping from PP_Instance to Dispatcher so // that we can send the messages to the right channel. |