| Index: content/renderer/pepper/pepper_plugin_instance_impl.h
|
| diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.h b/content/renderer/pepper/pepper_plugin_instance_impl.h
|
| index 1acce138ffba3dff8af6ec0c77b48b7237c302e9..046e3ec14b67b33bb633bf76ebc634bf94584c5d 100644
|
| --- a/content/renderer/pepper/pepper_plugin_instance_impl.h
|
| +++ b/content/renderer/pepper/pepper_plugin_instance_impl.h
|
| @@ -301,6 +301,12 @@ class CONTENT_EXPORT PepperPluginInstanceImpl
|
| // Send the message on to the plugin.
|
| void HandleMessage(ppapi::ScopedPPVar message);
|
|
|
| + // Send the message synchronously to the plugin, and get a result. Returns
|
| + // true if the plugin handled the message, false if it didn't. The plugin
|
| + // won't handle the message if it has not registered a PPP_MessageHandler.
|
| + bool HandleBlockingMessage(ppapi::ScopedPPVar message,
|
| + ppapi::ScopedPPVar* result);
|
| +
|
| // Returns true if the plugin is processing a user gesture.
|
| bool IsProcessingUserGesture();
|
|
|
|
|