Index: tools/telemetry/telemetry/android_browser_finder.py |
diff --git a/tools/chrome_remote_control/chrome_remote_control/android_browser_finder.py b/tools/telemetry/telemetry/android_browser_finder.py |
similarity index 92% |
rename from tools/chrome_remote_control/chrome_remote_control/android_browser_finder.py |
rename to tools/telemetry/telemetry/android_browser_finder.py |
index a0d4b04da800467fdc61a9af0267197d6e8c11a1..83e10308a1d948599d208a51a42ffa46ead1632d 100644 |
--- a/tools/chrome_remote_control/chrome_remote_control/android_browser_finder.py |
+++ b/tools/telemetry/telemetry/android_browser_finder.py |
@@ -1,18 +1,18 @@ |
# Copyright (c) 2012 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. |
-"""Finds android browsers that can be controlled by chrome_remote_control.""" |
+"""Finds android browsers that can be controlled by telemetry.""" |
import os |
import logging as real_logging |
import re |
import subprocess |
-from chrome_remote_control import adb_commands |
-from chrome_remote_control import android_browser_backend |
-from chrome_remote_control import android_platform |
-from chrome_remote_control import browser |
-from chrome_remote_control import possible_browser |
+from telemetry import adb_commands |
+from telemetry import android_browser_backend |
+from telemetry import android_platform |
+from telemetry import browser |
+from telemetry import possible_browser |
ALL_BROWSER_TYPES = ','.join([ |
'android-content-shell', |
@@ -139,7 +139,7 @@ def FindAllAvailableBrowsers(options, logging=real_logging): |
# See if the "forwarder" is installed -- we need this to host content locally |
# but make it accessible to the device. |
if len(possible_browsers) and not adb_commands.HasForwarder(adb): |
- logging.warn('chrome_remote_control detected an android device. However,') |
+ logging.warn('telemetry detected an android device. However,') |
logging.warn('Chrome\'s port-forwarder app is not available.') |
logging.warn('To build:') |
logging.warn(' make -j16 host_forwarder device_forwarder') |