Chromium Code Reviews| Index: remoting/webapp/crd/js/client_plugin_impl.js |
| diff --git a/remoting/webapp/crd/js/client_plugin_impl.js b/remoting/webapp/crd/js/client_plugin_impl.js |
| index 3560e7b8df1070e6de590a79716a59e0322e7248..7ea9e6f27833cba0de252e07a6ed4ffc14d980c1 100644 |
| --- a/remoting/webapp/crd/js/client_plugin_impl.js |
| +++ b/remoting/webapp/crd/js/client_plugin_impl.js |
| @@ -635,6 +635,17 @@ remoting.ClientPluginImpl.prototype.sendClipboardItem = |
| }; |
| /** |
| + * Notifies the plugin that touch events should be handled by the plugin. |
|
Wez
2015/04/21 02:12:12
See comments re wording on the interface,.
Rintaro Kuroiwa
2015/04/22 19:56:00
Done.
|
| + * |
| + * @param {boolean} True if the plugin should handle touch events. |
| + * @return {void} Nothing. |
| + */ |
| +remoting.ClientPluginImpl.prototype.enableTouchEvents = function(enable) { |
| + this.plugin_.postMessage( |
| + JSON.stringify({method: 'enableTouchEvents', data: {'enable': enable}})); |
| +}; |
| + |
| +/** |
| * Notifies the host that the client has the specified size and pixel density. |
| * |
| * @param {number} width The available client width in DIPs. |