Index: build/android/adb_run_chrome_shell |
diff --git a/build/android/adb_run_chrome_shell b/build/android/adb_run_chrome_shell |
index 46558b3bbcfca1b1ce813b578ae7448a92b2c712..79c4c32b5c3408387ec211d304d88538e2b3b06c 100755 |
--- a/build/android/adb_run_chrome_shell |
+++ b/build/android/adb_run_chrome_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.chrome.shell/.ChromeShellActivity \ |
- $INTENT_ARGS |
+ ${optional_url:+-d "$optional_url"} |