Index: remoting/webapp/remoting.js |
diff --git a/remoting/webapp/remoting.js b/remoting/webapp/remoting.js |
index 4c5efadd849a64598178f8fb8fc7c328565a701f..2fc8e9ee7f34a929d10b5c4618f47d6f687a8cf6 100644 |
--- a/remoting/webapp/remoting.js |
+++ b/remoting/webapp/remoting.js |
@@ -184,8 +184,11 @@ remoting.createNpapiPlugin = function(container) { |
remoting.isMe2MeInstallable = function() { |
/** @type {string} */ |
var platform = navigator.platform; |
- // Chromoting host is not installable on ChromeOS and any linux distro other |
- // than Ubuntu. |
+ // The chromoting host is currently not installable on ChromeOS. |
+ // For Linux, we have a install package for Ubuntu but not other distros. |
+ // Since we cannot tell from javascript alone the Linux distro the client is |
+ // on, we don't show the daemon-control UI for Linux unless the host is |
+ // installed. |
return platform == 'Win32' || platform == 'MacIntel'; |
} |