summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/client_plugin_v1.js
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/webapp/client_plugin_v1.js')
-rw-r--r--remoting/webapp/client_plugin_v1.js31
1 files changed, 19 insertions, 12 deletions
diff --git a/remoting/webapp/client_plugin_v1.js b/remoting/webapp/client_plugin_v1.js
index e67887b..c4d4607 100644
--- a/remoting/webapp/client_plugin_v1.js
+++ b/remoting/webapp/client_plugin_v1.js
@@ -230,20 +230,20 @@ remoting.ClientPluginV1.prototype.getPerfStats = function() {
};
/**
- * This dummy method exists only so that this class implements ClientPlugin.
- *
- * @param {string} mimeType The MIME type of the clipboard item.
- * @param {string} item The clipboard item.
+ * These dummy methods exist only so that this class implements ClientPlugin.
+ */
+
+/**
+ * @param {string} mimeType
+ * @param {string} item
*/
remoting.ClientPluginV1.prototype.sendClipboardItem = function(mimeType, item) {
return;
};
/**
- * This dummy method exists only so that this class implements ClientPlugin.
- *
- * @param {number} usbKeycode The USB-style code of the key to inject.
- * @param {boolean} pressed True to inject a key press, False for a release.
+ * @param {number} usbKeycode
+ * @param {boolean} pressed
*/
remoting.ClientPluginV1.prototype.injectKeyEvent =
function(usbKeycode, pressed) {
@@ -251,12 +251,19 @@ remoting.ClientPluginV1.prototype.injectKeyEvent =
};
/**
- * Remap one USB keycode to another in all subsequent key events.
- *
- * @param {number} fromKeycode The USB-style code of the key to remap.
- * @param {number} toKeycode The USB-style code to remap the key to.
+ * @param {number} fromKeycode
+ * @param {number} toKeycode
*/
remoting.ClientPluginV1.prototype.remapKey =
function(fromKeycode, toKeycode) {
return;
};
+
+/**
+ * @param {number} width
+ * @param {number} height
+ */
+remoting.ClientPluginV1.prototype.notifyClientDimensions =
+ function(width, height) {
+ return;
+};