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

Unified Diff: build/android/adb_kill_blimp_client

Issue 1364143002: Move ChromeCommandLineInitUtil to base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_test
Patch Set: Addressed comments, added adb scripts, fixed library loader bug. Created 5 years, 3 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: build/android/adb_kill_blimp_client
diff --git a/build/android/adb_kill_chrome_public b/build/android/adb_kill_blimp_client
similarity index 70%
copy from build/android/adb_kill_chrome_public
copy to build/android/adb_kill_blimp_client
index 5b539a043d4d910834f00c45b49112c89ec7bb17..6221e45234aa01d846254d46b45a43332d2c79ee 100755
--- a/build/android/adb_kill_chrome_public
+++ b/build/android/adb_kill_blimp_client
@@ -4,14 +4,14 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
-# Kill a running instance of ChromePublic.
+# Kill a running instance of Blimp.
#
# Assumes you have sourced the build/android/envsetup.sh script.
-SHELL_PID_LINES=$(adb shell ps | grep -w 'org.chromium.chrome')
+SHELL_PID_LINES=$(adb shell ps | grep -w 'org.chromium.blimp')
VAL=$(echo "$SHELL_PID_LINES" | wc -l)
if [ $VAL -lt 1 ] ; then
- echo "Not running ChromePublic."
+ echo "Not running Blimp."
else
SHELL_PID=$(echo $SHELL_PID_LINES | awk '{print $2}')
if [ "$SHELL_PID" != "" ] ; then
@@ -19,6 +19,6 @@ else
adb shell kill $SHELL_PID
set -
else
- echo "ChromePublic does not appear to be running."
+ echo "Blimp does not appear to be running."
fi
fi

Powered by Google App Engine
This is Rietveld 408576698