blob: 6b9fb4ee70c694e0a8b5a1d0f9541f6a1b62762c [file] [log] [blame]
william.xiee498bbd72015-11-18 01:21:081#!/bin/bash
2#
Avi Drissman73a09d12022-09-08 20:33:383# Copyright 2013 The Chromium Authors
william.xiee498bbd72015-11-18 01:21:084# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7# If no flags are given, prints the current content shell flags.
8#
9# Otherwise, the given flags are used to REPLACE (not modify) the content shell
10# flags. For example:
11# adb_system_webview_command_line --enable-webgl
12#
13# To remove all content shell flags, pass an empty string for the flags:
perezju9f5c34632017-01-20 07:42:2814# adb_system_webview_command_line ""
william.xiee498bbd72015-11-18 01:21:0815
perezju9f5c34632017-01-20 07:42:2816exec $(dirname $0)/adb_command_line.py --name webview-command-line "$@"