| Index: ppapi/proxy/plugin_dispatcher.h
|
| diff --git a/ppapi/proxy/plugin_dispatcher.h b/ppapi/proxy/plugin_dispatcher.h
|
| index 5dd67255df5be5b2140eeadf5bf4110c5f495de0..d7c118e8df04205d297acf7ad5879652df70f0d8 100644
|
| --- a/ppapi/proxy/plugin_dispatcher.h
|
| +++ b/ppapi/proxy/plugin_dispatcher.h
|
| @@ -34,6 +34,8 @@ class ResourceCreationAPI;
|
|
|
| namespace proxy {
|
|
|
| +class ResourceMessageReplyParams;
|
| +
|
| // Used to keep track of per-instance data.
|
| struct InstanceData {
|
| InstanceData();
|
| @@ -142,6 +144,9 @@ class PPAPI_PROXY_EXPORT PluginDispatcher
|
| void ForceFreeAllInstances();
|
|
|
| // IPC message handlers.
|
| + void OnMsgResourceReply(
|
| + const ppapi::proxy::ResourceMessageReplyParams& reply_params,
|
| + const IPC::Message& nested_msg);
|
| void OnMsgSupportsInterface(const std::string& interface_name, bool* result);
|
| void OnMsgSetPreferences(const Preferences& prefs);
|
|
|
|
|