| Index: ppapi/proxy/plugin_dispatcher.h
|
| diff --git a/ppapi/proxy/plugin_dispatcher.h b/ppapi/proxy/plugin_dispatcher.h
|
| index ad920fd899e0affc7e23dfda32e86c474a3d9ff4..364f55594b16ad921c3eaea4248ae77714408a86 100644
|
| --- a/ppapi/proxy/plugin_dispatcher.h
|
| +++ b/ppapi/proxy/plugin_dispatcher.h
|
| @@ -34,9 +34,14 @@ namespace proxy {
|
| // Used to keep track of per-instance data.
|
| struct InstanceData {
|
| InstanceData();
|
| + ~InstanceData();
|
| +
|
| PP_Rect position;
|
| PP_Bool fullscreen; // Used for PPB_Fullscreen_Dev.
|
| PP_Bool flash_fullscreen; // Used for PPB_FlashFullscreen.
|
| +
|
| + // When non-0, indicates the callback to execute when mouse lock is lost.
|
| + PP_CompletionCallback mouse_lock_callback;
|
| };
|
|
|
| class PPAPI_PROXY_EXPORT PluginDispatcher : public Dispatcher {
|
|
|