Home | History | Annotate | Download | only in webapp

Lines Matching refs:hostId

22  * @param {string} hostId The host identifer for which to load options.
28 remoting.HostSettings.load = function(hostId, callback) {
37 remoting.HostSettings.loadInternal_(hostId, onDone);
44 * @param {string} hostId The host identifer for which to save options.
50 remoting.HostSettings.save = function(hostId, options, opt_callback) {
60 allHosts[hostId] = requestedHost;
65 remoting.HostSettings.loadInternal_(hostId, onDone);
71 * @param {string} hostId The host identifer for which to load options.
76 remoting.HostSettings.loadInternal_ = function(hostId, callback) {
88 } else if (/** @type {Object} */ (result).hasOwnProperty(hostId) &&
89 typeof(result[hostId]) == 'object') {
90 callback(result[hostId], result);