| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package org.chromium.media; | |
| 6 | |
| 7 /** | |
| 8 * Contains command line switches that are specific to the media layer. | |
| 9 */ | |
| 10 public abstract class MediaSwitches { | |
| 11 // Ignores all autoplay restrictions. It will ignore the current autoplay po
licy and all | |
| 12 // restrictions such as playback in a background tab. It should only be enab
led for testing. | |
| 13 public static final String IGNORE_AUTOPLAY_RESTRICTIONS_FOR_TESTS = | |
| 14 "ignore-autoplay-restrictions"; | |
| 15 | |
| 16 // Prevents instantiation. | |
| 17 private MediaSwitches() {} | |
| 18 } | |
| OLD | NEW |