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

Unified Diff: build/android/adb_kill_content_shell

Issue 221823011: [Android] Change object types from AndroidCommands to DeviceUtils in build/android/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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/adb_install_apk.py ('k') | build/android/adb_profile_chrome.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/adb_kill_content_shell
diff --git a/build/android/adb_kill_content_shell b/build/android/adb_kill_content_shell
index 64ab5b11fb0408b118f98bcfcb54d5e9a15e656d..e379dd47149d145378d9a70253ff41db9092af19 100755
--- a/build/android/adb_kill_content_shell
+++ b/build/android/adb_kill_content_shell
@@ -12,7 +12,7 @@ SHELL_PID_LINES=$(adb shell ps | grep ' org.chromium.content_shell_apk')
VAL=$(echo "$SHELL_PID_LINES" | wc -l)
if [ $VAL -lt 1 ] ; then
echo "Not running Content shell."
-else
+else
SHELL_PID=$(echo $SHELL_PID_LINES | awk '{print $2}')
if [ "$SHELL_PID" != "" ] ; then
set -x
« no previous file with comments | « build/android/adb_install_apk.py ('k') | build/android/adb_profile_chrome.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698