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

Side by Side Diff: blimp/client/app/android/java/src/org/chromium/blimp/session/EngineInfo.java

Issue 2493333002: Move Java Blimp shell code to app subpackage (Closed)
Patch Set: Merge branch 'refs/heads/master' into blimp-shell-integration Created 4 years, 1 month 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
OLDNEW
(Empty)
1 // Copyright 2016 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.blimp.session;
6
7 /**
8 * Stores the information about the engine.
9 */
10 public class EngineInfo {
11 public final String ipAddress;
12 public final String engineVersion;
13 public final String assignerUrl;
14 private boolean mConnected;
15
16 public EngineInfo(String ip, String version, String assigner) {
17 ipAddress = ip;
18 engineVersion = version;
19 assignerUrl = assigner;
20 }
21
22 public boolean isConnected() {
23 return mConnected;
24 }
25
26 public void setConnected(boolean connected) {
27 this.mConnected = connected;
28 }
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698