Home | History | Annotate | Download | only in webapp

Lines Matching refs:Host

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