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

Unified Diff: build/android/adb_run_android_webview_shell

Issue 670183003: Update from chromium 62675d9fb31fb8cedc40f68e78e8445a74f362e7 (Closed) Base URL: git@github.com:domokit/mojo.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/all.gyp ('k') | build/android/adb_run_chrome_shell » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/adb_run_android_webview_shell
diff --git a/build/android/adb_run_android_webview_shell b/build/android/adb_run_android_webview_shell
index cc9f6d27e84cd68d3fb65d48b0a6df9d386f1ab2..1014a731f476608d8944c83bdc28ac8d6c2f0510 100755
--- a/build/android/adb_run_android_webview_shell
+++ b/build/android/adb_run_android_webview_shell
@@ -4,12 +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.android_webview.shell/.AwShellActivity \
- $INTENT_ARGS
-
+ ${optional_url:+-d "$optional_url"}
« no previous file with comments | « build/all.gyp ('k') | build/android/adb_run_chrome_shell » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698