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

Unified Diff: build/android/pylib/screenshot.py

Issue 358993003: [Android] Switch to DeviceUtils versions of file functions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « build/android/pylib/perf/thermal_throttle.py ('k') | build/android/pylib/uiautomator/test_package.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/screenshot.py
diff --git a/build/android/pylib/screenshot.py b/build/android/pylib/screenshot.py
index a09bc3d0a130261a08828b875a90ee798e7bb569..d2e7c956ce4796dd547cada941cf495f757f2aef 100644
--- a/build/android/pylib/screenshot.py
+++ b/build/android/pylib/screenshot.py
@@ -86,7 +86,6 @@ class VideoRecorder(object):
Returns:
Output video file name on the host.
"""
- self._device.old_interface.PullFileFromDevice(
- self._device_file, self._host_file)
+ self._device.PullFile(self._device_file, self._host_file)
self._device.RunShellCommand('rm -f "%s"' % self._device_file)
return self._host_file
« no previous file with comments | « build/android/pylib/perf/thermal_throttle.py ('k') | build/android/pylib/uiautomator/test_package.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698