Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1688)

Side by Side Diff: remoting/android/java/src/org/chromium/chromoting/HostInfo.java

Issue 157013002: Pull HostListDirectoryGrabber out to a separate class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix FindBugs warnings Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 HostInfo {
9 public final String name;
10 public final String id;
11 public final String jabberId;
12 public final String publicKey;
13 public final boolean isOnline;
14
15 public HostInfo(String name, String id, String jabberId, String publicKey, b oolean isOnline) {
16 this.name = name;
17 this.id = id;
18 this.jabberId = jabberId;
19 this.publicKey = publicKey;
20 this.isOnline = isOnline;
21 }
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698