| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview | 6 * @fileoverview |
| 7 * Class representing the host-list portion of the home screen UI. | 7 * Class representing the host-list portion of the home screen UI. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 'use strict'; | 10 'use strict'; |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 */ | 264 */ |
| 265 remoting.HostList.COLLAPSED_ = 'collapsed'; | 265 remoting.HostList.COLLAPSED_ = 'collapsed'; |
| 266 | 266 |
| 267 /** | 267 /** |
| 268 * Key name under which Me2Me hosts are cached. | 268 * Key name under which Me2Me hosts are cached. |
| 269 */ | 269 */ |
| 270 remoting.HostList.HOSTS_KEY = 'me2me-cached-hosts'; | 270 remoting.HostList.HOSTS_KEY = 'me2me-cached-hosts'; |
| 271 | 271 |
| 272 /** @type {remoting.HostList} */ | 272 /** @type {remoting.HostList} */ |
| 273 remoting.hostList = null; | 273 remoting.hostList = null; |
| OLD | NEW |