| Index: remoting/webapp/crd/js/host.js
|
| diff --git a/remoting/webapp/crd/js/host.js b/remoting/webapp/crd/js/host.js
|
| index 6bc0bbadc026ff34102a57c4c1e1a40f55ca0670..9070b431d8118e8b75e6cda8c300cf14aff33c61 100644
|
| --- a/remoting/webapp/crd/js/host.js
|
| +++ b/remoting/webapp/crd/js/host.js
|
| @@ -86,13 +86,13 @@ remoting.Host.Options.prototype.load = function() {
|
| // TODO(kelvinp): Uses a separate host options for app-remoting that
|
| // hardcodes resizeToClient to true.
|
| that.resizeToClient =
|
| - getBooleanAttr(options, 'resizeToClient', true);
|
| - that.shrinkToFit = getBooleanAttr(options, 'shrinkToFit', true);
|
| - that.desktopScale = getNumberAttr(options, 'desktopScale', 1);
|
| - that.remapKeys = getStringAttr(options, 'remapKeys', '');
|
| + base.getBooleanAttr(options, 'resizeToClient', true);
|
| + that.shrinkToFit = base.getBooleanAttr(options, 'shrinkToFit', true);
|
| + that.desktopScale = base.getNumberAttr(options, 'desktopScale', 1);
|
| + that.remapKeys = base.getStringAttr(options, 'remapKeys', '');
|
| that.pairingInfo =
|
| /** @type {remoting.PairingInfo} */ (
|
| - getObjectAttr(options, 'pairingInfo', that.pairingInfo));
|
| + base.getObjectAttr(options, 'pairingInfo', that.pairingInfo));
|
| });
|
| };
|
|
|
|
|