michael@0: #!/bin/bash michael@0: # michael@0: # Copyright (c) 2012 The Chromium Authors. All rights reserved. michael@0: # Use of this source code is governed by a BSD-style license that can be michael@0: # found in the LICENSE file. michael@0: michael@0: if [ $# -gt 0 ] ; then michael@0: INTENT_ARGS='-d "$1"' # e.g. a URL michael@0: fi michael@0: michael@0: adb shell am start \ michael@0: -a android.intent.action.VIEW \ michael@0: -n org.chromium.content_shell/.ContentShellActivity \ michael@0: $INTENT_ARGS