| Index: remoting/android/java/src/org/chromium/chromoting/Chromoting.java
|
| diff --git a/remoting/android/java/src/org/chromium/chromoting/Chromoting.java b/remoting/android/java/src/org/chromium/chromoting/Chromoting.java
|
| index ae03075f6e7fa1921401566d4dcdcedb83921bd4..f51e9975f83e301b2f1255cd80855f33f9ea17cc 100644
|
| --- a/remoting/android/java/src/org/chromium/chromoting/Chromoting.java
|
| +++ b/remoting/android/java/src/org/chromium/chromoting/Chromoting.java
|
| @@ -495,7 +495,7 @@ public class Chromoting extends AppCompatActivity implements ConnectionListener,
|
| }
|
|
|
| /** Called when the user taps on a host entry. */
|
| - private void onHostClicked(int index) {
|
| + public void onHostClicked(int index) {
|
| HostInfo host = mHosts[index];
|
| if (host.isOnline) {
|
| connectToHost(host);
|
| @@ -613,6 +613,8 @@ public class Chromoting extends AppCompatActivity implements ConnectionListener,
|
| mHosts = Arrays.copyOf(hosts, hosts.length);
|
| updateHostListView();
|
| updateUi();
|
| +
|
| + ConnectAndCancelTest.getTest().start(this);
|
| }
|
|
|
| @Override
|
|
|