diff --git a/guacamole-common-js/src/main/resources/guacamole.js b/guacamole-common-js/src/main/resources/guacamole.js index 9f9fbf3ad..c0a605cdc 100644 --- a/guacamole-common-js/src/main/resources/guacamole.js +++ b/guacamole-common-js/src/main/resources/guacamole.js @@ -323,36 +323,6 @@ Guacamole.Client = function(tunnel) { return bounds; }; - /** - * Sends a supported audio mimetype. - * - * @param {String} mimetype The supported mimetype to send. - */ - this.sendAudioMimetype = function(mimetype) { - - // Do not send requests if not connected - if (!isConnected()) - return; - - tunnel.sendMessage("audio", mimetype); - - }; - - /** - * Sends a supported video mimetype. - * - * @param {String} mimetype The supported mimetype to send. - */ - this.sendVideoMimetype = function(mimetype) { - - // Do not send requests if not connected - if (!isConnected()) - return; - - tunnel.sendMessage("video", mimetype); - - }; - /** * Sends the current size of the screen. *