summaryrefslogtreecommitdiffstats
path: root/build/android/screenshot.py
diff options
context:
space:
mode:
authortonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-10 01:50:08 +0000
committertonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-10 01:50:08 +0000
commit7733db9d5fca981f3dd1178c4e07ac757e5141bd (patch)
tree8d8db6484ffef44801e57855777382279fbcc951 /build/android/screenshot.py
parent64896744845882dd3aaeb850dee0011279659c64 (diff)
downloadchromium_src-7733db9d5fca981f3dd1178c4e07ac757e5141bd.zip
chromium_src-7733db9d5fca981f3dd1178c4e07ac757e5141bd.tar.gz
chromium_src-7733db9d5fca981f3dd1178c4e07ac757e5141bd.tar.bz2
[Telemetry] Make StartVideoCapture start capturing synchronously.
Previously it just asynchronously started capture. BUG=323813 R=bulach@chromium.org, skyostil@chromium.org Review URL: https://codereview.chromium.org/109553002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239640 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android/screenshot.py')
-rwxr-xr-xbuild/android/screenshot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/screenshot.py b/build/android/screenshot.py
index db39c5d..ddea8bb 100755
--- a/build/android/screenshot.py
+++ b/build/android/screenshot.py
@@ -77,7 +77,7 @@ def main():
if len(args) > 1:
parser.error('Too many positional arguments.')
host_file = args[0] if args else options.file
- adb = android_commands.AndroidCommands(options.device)
+ adb = android_commands.AndroidCommands(options.device, api_strict_mode=True)
if options.video:
_CaptureVideo(adb, host_file, options)