Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package org.chromium.chromoting; | |
| 6 | |
| 7 /** Class to represent a Host returned by {@link HostListLoader}. */ | |
| 8 public class Host { | |
|
Sergey Ulanov
2014/02/13 19:36:07
Does the style guide allow struct-like classes lik
Sergey Ulanov
2014/02/14 08:55:20
Call it HostInfo?
Lambros
2014/02/15 01:40:21
Done.
| |
| 9 public String name; | |
| 10 public String id; | |
| 11 public String jabberId; | |
| 12 public String publicKey; | |
| 13 public boolean isOnline; | |
| 14 } | |
| OLD | NEW |