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

Side by Side Diff: blimp/client/app/android/java/src/org/chromium/blimp/app/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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 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 package org.chromium.blimp.session; 5 package org.chromium.blimp.app.session;
6 6
7 /** 7 /**
8 * Stores the information about the engine. 8 * Stores the information about the engine.
9 */ 9 */
10 public class EngineInfo { 10 public class EngineInfo {
11 public final String ipAddress; 11 public final String ipAddress;
12 public final String engineVersion; 12 public final String engineVersion;
13 public final String assignerUrl; 13 public final String assignerUrl;
14 private boolean mConnected; 14 private boolean mConnected;
15 15
16 public EngineInfo(String ip, String version, String assigner) { 16 public EngineInfo(String ip, String version, String assigner) {
17 ipAddress = ip; 17 ipAddress = ip;
18 engineVersion = version; 18 engineVersion = version;
19 assignerUrl = assigner; 19 assignerUrl = assigner;
20 } 20 }
21 21
22 public boolean isConnected() { 22 public boolean isConnected() {
23 return mConnected; 23 return mConnected;
24 } 24 }
25 25
26 public void setConnected(boolean connected) { 26 public void setConnected(boolean connected) {
27 this.mConnected = connected; 27 this.mConnected = connected;
28 } 28 }
29 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698