Chromium Code Reviews| Index: remoting/webapp/host_list.js |
| diff --git a/remoting/webapp/host_list.js b/remoting/webapp/host_list.js |
| index 9a1fcb8079dd886df5f66beda666c1bcc5f72725..a32ee5d94218fabffb7dc574154ee0a2dd155830 100644 |
| --- a/remoting/webapp/host_list.js |
| +++ b/remoting/webapp/host_list.js |
| @@ -80,9 +80,8 @@ remoting.HostList = function(table, noHosts, errorMsg, errorButton, |
| * @type {remoting.HostController.State} |
| * @private |
| */ |
| - this.localHostState_ = remoting.isMe2MeSupported() |
| - ? remoting.HostController.State.NOT_INSTALLED |
| - : remoting.HostController.State.NOT_IMPLEMENTED; |
| + this.localHostState_ = remoting.HostController.State.UNKNOWN; |
|
Jamie
2014/02/12 23:00:12
I think UNKNOWN is still the right initial value f
Sergey Ulanov
2014/02/13 00:44:11
There is no downside. UNKNOWN is the right initial
Jamie
2014/02/13 01:38:26
Sorry, I was reading it the wrong way round...
|
| + |
| /** |
| * @type {number} |
| * @private |