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

Unified Diff: tools/telemetry/telemetry/android_browser_finder.py

Issue 11361165: [chrome_remote_control] Rename chrome_remote_control to telemetry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
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')
« no previous file with comments | « tools/telemetry/telemetry/android_browser_backend.py ('k') | tools/telemetry/telemetry/android_browser_finder_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698