Index: build/android/provision_devices.py |
diff --git a/build/android/provision_devices.py b/build/android/provision_devices.py |
index 859fcbbe1ee207f1e3da26d2ce79cda92539624b..759701c11f6b06aff5b2638b5d4882db85b18187 100755 |
--- a/build/android/provision_devices.py |
+++ b/build/android/provision_devices.py |
@@ -59,7 +59,7 @@ def PushAndLaunchAdbReboot(devices, target): |
print 'Will push and launch adb_reboot on %s' % device_serial |
device = device_utils.DeviceUtils(device_serial) |
# Kill if adb_reboot is already running. |
- device.old_interface.KillAllBlocking('adb_reboot', 2) |
+ device.KillAll('adb_reboot', blocking=True, timeout=2) |
# Push adb_reboot |
print ' Pushing adb_reboot ...' |
adb_reboot = os.path.join(constants.DIR_SOURCE_ROOT, |