diff options
Diffstat (limited to 'webkit/plugins/ppapi/ppb_var_deprecated_impl.cc')
-rw-r--r-- | webkit/plugins/ppapi/ppb_var_deprecated_impl.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/plugins/ppapi/ppb_var_deprecated_impl.cc b/webkit/plugins/ppapi/ppb_var_deprecated_impl.cc index 5f59c45..e7373a3 100644 --- a/webkit/plugins/ppapi/ppb_var_deprecated_impl.cc +++ b/webkit/plugins/ppapi/ppb_var_deprecated_impl.cc @@ -334,7 +334,8 @@ PP_Var CallDeprecated(PP_Var var, return PP_MakeUndefined(); PluginInstance* plugin = accessor.GetPluginInstance(); if (plugin && plugin->IsProcessingUserGesture()) { - WebKit::WebScopedUserGesture user_gesture; + WebKit::WebScopedUserGesture user_gesture( + plugin->CurrentUserGestureToken()); return InternalCallDeprecated(&accessor, method_name, argc, argv, exception); } |