2012-04-26 04:48:41 +04:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
if [ $# -gt 0 ] ; then
|
2012-11-07 08:53:26 +04:00
|
|
|
INTENT_ARGS="-d \"$1\"" # e.g. a URL
|
2012-04-26 04:48:41 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
adb shell am start \
|
|
|
|
-a android.intent.action.VIEW \
|
2013-01-30 01:55:55 +04:00
|
|
|
-n org.chromium.content_shell_apk/.ContentShellActivity \
|
2012-04-26 04:48:41 +04:00
|
|
|
$INTENT_ARGS
|