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

Unified Diff: tools/telemetry/telemetry/core/platform/profiler/v8_profiler.py

Issue 1132993004: [Android] Remove more references to and uses of AndroidCommands. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/platform/profiler/v8_profiler.py
diff --git a/tools/telemetry/telemetry/core/platform/profiler/v8_profiler.py b/tools/telemetry/telemetry/core/platform/profiler/v8_profiler.py
index a35b73192db4a9bec58adb7d63399d153dee0d50..73e126ea5cb4929dc257da60c9b8e0f71b88f124 100644
--- a/tools/telemetry/telemetry/core/platform/profiler/v8_profiler.py
+++ b/tools/telemetry/telemetry/core/platform/profiler/v8_profiler.py
@@ -38,8 +38,7 @@ class V8Profiler(profiler.Profiler):
# On Android pull the output file to the host.
if self._platform_backend.GetOSName() == 'android':
host_output_file = '%s.log' % self._output_path
- self._browser_backend.adb.device().old_interface.Adb().Pull(
- output_file, host_output_file)
+ self._browser_backend.adb.device().PullFile(output_file, host_output_file)
# Clean the device
self._browser_backend.adb.device().RunShellCommand('rm %s' % output_file)
output_file = host_output_file

Powered by Google App Engine
This is Rietveld 408576698