| Index: remoting/webapp/crd/js/desktop_remoting_activity.js
|
| diff --git a/remoting/webapp/crd/js/desktop_remoting_activity.js b/remoting/webapp/crd/js/desktop_remoting_activity.js
|
| index 5b48b1e9674a25f9e02bcafd955acdddad0e35a2..b4c3a079edfa3244ab14270bf4b7fa468ec021cd 100644
|
| --- a/remoting/webapp/crd/js/desktop_remoting_activity.js
|
| +++ b/remoting/webapp/crd/js/desktop_remoting_activity.js
|
| @@ -94,12 +94,8 @@ remoting.DesktopRemotingActivity.prototype.onConnected =
|
| document.getElementById('client-container'), connectionInfo);
|
|
|
| // Apply the default or previously-specified keyboard remapping.
|
| - var remapping = connectionInfo.host().options.remapKeys;
|
| - if (base.isEmptyObject(remapping) && remoting.platformIsChromeOS()) {
|
| - // Under ChromeOS, remap the right Control key to the right Win/Cmd key.
|
| - remapping = {0x0700e4: 0x0700e7};
|
| - }
|
| - connectionInfo.plugin().setRemapKeys(remapping);
|
| + var remapping = connectionInfo.host().options.getRemapKeys();
|
| + this.connectedView_.setRemapKeys(remapping);
|
|
|
| if (connectionInfo.plugin().hasCapability(
|
| remoting.ClientSession.Capability.VIDEO_RECORDER)) {
|
|
|