Chromium Code Reviews| Index: remoting/android/java/src/org/chromium/chromoting/Host.java |
| diff --git a/remoting/android/java/src/org/chromium/chromoting/Host.java b/remoting/android/java/src/org/chromium/chromoting/Host.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..01fb665a28ed2ac699f886d89dab593787647bb6 |
| --- /dev/null |
| +++ b/remoting/android/java/src/org/chromium/chromoting/Host.java |
| @@ -0,0 +1,14 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +package org.chromium.chromoting; |
| + |
| +/** Class to represent a Host returned by {@link HostListLoader}. */ |
| +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.
|
| + public String name; |
| + public String id; |
| + public String jabberId; |
| + public String publicKey; |
| + public boolean isOnline; |
| +} |