Remove old mimetype events.

This commit is contained in:
Michael Jumper
2012-10-29 09:20:21 -07:00
parent 43a823e5c8
commit 4e2f4dff31

View File

@@ -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.
*