summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/viewer_plugin_proto.js
diff options
context:
space:
mode:
authorwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-31 20:00:59 +0000
committerwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-31 20:00:59 +0000
commitb881dc14a61bba462385d9a90591e7c419523e75 (patch)
tree69cbfc810063fdff2cd3d7528eaf073e519dbd33 /remoting/webapp/viewer_plugin_proto.js
parent357cb9b1ba53e24b8cbb53d187653353a2351cd5 (diff)
downloadchromium_src-b881dc14a61bba462385d9a90591e7c419523e75.zip
chromium_src-b881dc14a61bba462385d9a90591e7c419523e75.tar.gz
chromium_src-b881dc14a61bba462385d9a90591e7c419523e75.tar.bz2
Remove Chromoting web-app client plugin V1 wrappers
BUG=130335 TEST=Manual verification of web-app client functionality, and PyAuto tests. Review URL: https://chromiumcodereview.appspot.com/10441105 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139843 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp/viewer_plugin_proto.js')
-rw-r--r--remoting/webapp/viewer_plugin_proto.js61
1 files changed, 0 insertions, 61 deletions
diff --git a/remoting/webapp/viewer_plugin_proto.js b/remoting/webapp/viewer_plugin_proto.js
index 6ccb7d9..67c13f0 100644
--- a/remoting/webapp/viewer_plugin_proto.js
+++ b/remoting/webapp/viewer_plugin_proto.js
@@ -15,64 +15,3 @@ remoting.ViewerPlugin = function() { };
/** @param {string} message The message to send to the host. */
remoting.ViewerPlugin.prototype.postMessage = function(message) {};
-
-/** @param {string} iq The Iq stanza received from the host. */
-remoting.ViewerPlugin.prototype.onIq = function(iq) {};
-
-/** Release all keys currently pressed by this client. */
-remoting.ViewerPlugin.prototype.releaseAllKeys = function() {};
-
-/**
- * @param {string} hostJid The host's JID.
- * @param {string} hostPublicKey The host's public key.
- * @param {string} clientJid The client's JID.
- * @param {string} sharedSecret The access code for IT2Me or the
- * PIN for Me2Me.
- * @param {string=} authenticationMethod Comma-separated list of
- * authentication methods the client should attempt to use.
- * @param {string=} authenticationTag A host-specific tag to mix into
- * authentication hashes.
- * @return {void} Nothing.
-*/
-remoting.ViewerPlugin.prototype.connect =
- function(hostJid, hostPublicKey, clientJid, sharedSecret,
- authenticationMethod, authenticationTag) {};
-
-/**
- * @param {boolean} scaleToFit New scaleToFit value.
- */
-remoting.ViewerPlugin.prototype.setScaleToFit = function(scaleToFit) {};
-
-/** @type {function(number, number): void} State change callback function. */
-remoting.ViewerPlugin.prototype.connectionInfoUpdate;
-
-/** @type {number} */ remoting.ViewerPlugin.prototype.apiMinVersion;
-/** @type {number} */ remoting.ViewerPlugin.prototype.apiVersion;
-
-/** @type {number} */ remoting.ViewerPlugin.prototype.desktopHeight;
-/** @type {number} */ remoting.ViewerPlugin.prototype.desktopWidth;
-
-/** @type {number} */ remoting.ViewerPlugin.prototype.status;
-/** @type {number} */ remoting.ViewerPlugin.prototype.error;
-
-/** @type {number} */ remoting.ViewerPlugin.prototype.STATUS_UNKNOWN;
-/** @type {number} */ remoting.ViewerPlugin.prototype.STATUS_CONNECTING;
-/** @type {number} */ remoting.ViewerPlugin.prototype.STATUS_INITIALIZING;
-/** @type {number} */ remoting.ViewerPlugin.prototype.STATUS_CONNECTED;
-/** @type {number} */ remoting.ViewerPlugin.prototype.STATUS_CLOSED;
-/** @type {number} */ remoting.ViewerPlugin.prototype.STATUS_FAILED;
-
-/** @type {number} */ remoting.ViewerPlugin.prototype.ERROR_NONE;
-/** @type {number} */ remoting.ViewerPlugin.prototype.ERROR_HOST_IS_OFFLINE;
-/** @type {number} */ remoting.ViewerPlugin.prototype.ERROR_SESSION_REJECTED;
-/** @type {number} */
- remoting.ViewerPlugin.prototype.ERROR_INCOMPATIBLE_PROTOCOL;
-/** @type {number} */ remoting.ViewerPlugin.prototype.ERROR_NETWORK_FAILURE;
-
-/** @type {number} */ remoting.ViewerPlugin.prototype.videoBandwidth;
-/** @type {number} */ remoting.ViewerPlugin.prototype.videoCaptureLatency;
-/** @type {number} */ remoting.ViewerPlugin.prototype.videoDecodeLatency;
-/** @type {number} */ remoting.ViewerPlugin.prototype.videoEncodeLatency;
-/** @type {number} */ remoting.ViewerPlugin.prototype.videoFrameRate;
-/** @type {number} */ remoting.ViewerPlugin.prototype.videoRenderLatency;
-/** @type {number} */ remoting.ViewerPlugin.prototype.roundTripLatency;