Chromium Code Reviews| Index: remoting/webapp/crd/js/client_plugin.js |
| diff --git a/remoting/webapp/crd/js/client_plugin.js b/remoting/webapp/crd/js/client_plugin.js |
| index 325117f51713e10483b74356dfe00193b631dc1a..7fd8e0382de29bb85b1e8492c54648668aedffe8 100644 |
| --- a/remoting/webapp/crd/js/client_plugin.js |
| +++ b/remoting/webapp/crd/js/client_plugin.js |
| @@ -101,6 +101,14 @@ remoting.ClientPlugin.prototype.sendClipboardItem = |
| function(mimeType, item) {}; |
| /** |
| + * Notifies the plugin that touch events should be handled by the plugin. |
|
Wez
2015/04/21 02:12:12
Suggest "Notifies the plugin whether send touch ev
Rintaro Kuroiwa
2015/04/22 19:56:00
Done.
|
| + * |
| + * @param {boolean} True if the plugin should handle touch events. |
| + * @return {void} Nothing. |
|
Wez
2015/04/21 02:12:12
nit: No need for Nothing, AFAIK
Rintaro Kuroiwa
2015/04/22 19:56:00
Done.
|
| + */ |
| +remoting.ClientPlugin.prototype.enableTouchEvents = function(enable) {}; |
| + |
| +/** |
| * Request that this client be paired with the current host. |
| * |
| * @param {string} clientName The human-readable name of the client. |