Home | History | Annotate | Download | only in webapp

Lines Matching defs:Host

7  * The deserialized form of the chromoting host as returned by Apiary.
20 remoting.Host = function() {
40 * Determine whether a host needs to be manually updated. This is the case if
41 * the host's major version number is more than 1 lower than that of the web-
43 * and if the host is on-line (off-line hosts are not expected to auto-update).
45 * @param {remoting.Host} host The host information from the directory.
49 * @return {boolean} True if the host is on-line but out-of-date.
51 remoting.Host.needsUpdate = function(host, webappVersion) {
52 if (host.status != 'ONLINE') {
55 var hostMajorVersion = parseInt(host.hostVersion, 10);
57 // Host versions 26 and higher include the version number in heartbeats,
58 // so if it's missing then the host is at most version 25.