For example: https://crrev.com/c/1134091/7/chrome/android/javatests/src/org/chromium/chrome/browser/vr/WebVrDeviceTest.java
@Test
@MediumTest
@CommandLineFlags.Remove({"enable-webvr"})
@CommandLineFlags.Add({"enable-features=WebXR"})
@VrActivityRestriction({VrActivityRestriction.SupportedActivity.ALL})
public void testWebXrCapabilities() throws InterruptedException {
gets turned into the less readable:
@Test
@MediumTest
@CommandLineFlags
.Remove({"enable-webvr"})
@CommandLineFlags.Add({"enable-features=WebXR"})
@VrActivityRestriction({VrActivityRestriction.SupportedActivity.ALL})
public void testWebXrCapabilities() throws InterruptedException {
Comment 1 by mthiesse@chromium.org
, Jul 11