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

Unified Diff: build/android/adb_run_content_shell

Issue 662683006: Don't quote the URL in intents sent by adb_run_*_shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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_run_chrome_shell ('k') | build/android/adb_run_mojo_shell » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/adb_run_content_shell
diff --git a/build/android/adb_run_content_shell b/build/android/adb_run_content_shell
index 17a734c982a8c27b855076314b28d01e2af5b889..3f01f3bf02f7110e584fd904321d4442272123f3 100755
--- a/build/android/adb_run_content_shell
+++ b/build/android/adb_run_content_shell
@@ -4,11 +4,9 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-if [ $# -gt 0 ] ; then
- INTENT_ARGS="-d \"$1\"" # e.g. a URL
-fi
+optional_url=$1
adb shell am start \
-a android.intent.action.VIEW \
-n org.chromium.content_shell_apk/.ContentShellActivity \
- $INTENT_ARGS
+ ${optional_url:+-d "$optional_url"}
« no previous file with comments | « build/android/adb_run_chrome_shell ('k') | build/android/adb_run_mojo_shell » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698