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.
|
|
|
|
|
2014-10-24 03:19:06 +04:00
|
|
|
optional_url=$1
|
2012-04-26 04:48:41 +04:00
|
|
|
|
|
|
|
adb shell am start \
|
|
|
|
-a android.intent.action.VIEW \
|
2013-01-30 01:55:55 +04:00
|
|
|
-n org.chromium.content_shell_apk/.ContentShellActivity \
|
2014-10-24 03:19:06 +04:00
|
|
|
${optional_url:+-d "$optional_url"}
|