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

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

Issue 22754003: Refactor BenchmarkResult.Add to take enum for data_type (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 3 months 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/core/chrome/android_browser_finder.py
===================================================================
--- tools/telemetry/telemetry/core/chrome/android_browser_finder.py (revision 218037)
+++ tools/telemetry/telemetry/core/chrome/android_browser_finder.py (working copy)
@@ -103,7 +103,7 @@
adb_works = False
if adb_works and sys.platform.startswith('linux'):
# Workaround for crbug.com/268450
- import psutil
+ import psutil # pylint: disable=F0401
adb_commands.GetAttachedDevices()
pids = [p.pid for p in psutil.process_iter() if 'adb' in p.name]
with open(os.devnull, 'w') as devnull:
« no previous file with comments | « tools/perf/metrics/smoothness.py ('k') | tools/telemetry/telemetry/core/platform/android_platform_backend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698