Fix java errors that used to be disabled.

This is https://chromium-review.googlesource.com/c/chromium/src/+/5901711 hitting WebRTC.

Change-Id: Ifedd949965a85b29364455a244edab1352f4fcea
Bug: None
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/364940
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Jeremy Leconte <jleconte@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#43193}
This commit is contained in:
Jeremy Leconte 2024-10-08 16:20:30 +02:00 committed by WebRTC LUCI CQ
parent a507a08904
commit e3819f6ac3
7 changed files with 16 additions and 17 deletions

View File

@ -111,7 +111,7 @@ public class AppRTCBluetoothManager {
}
@Override
/** Notifies the client when the proxy object has been disconnected from the service. */
// Notifies the client when the proxy object has been disconnected from the service.
public void onServiceDisconnected(int profile) {
if (profile != BluetoothProfile.HEADSET || bluetoothState == State.UNINITIALIZED) {
return;

View File

@ -20,6 +20,7 @@ public class CallSessionFileRotatingLogSink {
return nativeGetLogData(dirPath);
}
@SuppressWarnings("EnumOrdinal")
public CallSessionFileRotatingLogSink(
String dirPath, int maxFileSize, Logging.Severity severity) {
if (dirPath == null) {

View File

@ -291,6 +291,7 @@ public class PeerConnectionFactory {
* PeerConnectionFactory. Replaces all the old initialization methods. Must not be called while
* a PeerConnectionFactory is alive.
*/
@SuppressWarnings("EnumOrdinal")
public static void initialize(InitializationOptions options) {
ContextUtils.initialize(options.applicationContext);
NativeLibrary.initialize(options.nativeLibraryLoader, options.nativeLibraryName);

View File

@ -60,9 +60,9 @@ public class DefaultVideoEncoderFactoryTest {
@SmallTest
@Test
public void getSupportedCodecs_hwVp8WithDifferentParams_twoVp8() {
VideoCodecInfo hwVp8Encoder = new VideoCodecInfo("VP8", new HashMap<String, String>() {
{ put("param", "value"); }
});
HashMap<String, String> hwVp8EncoderParams = new HashMap<String, String>(1);
hwVp8EncoderParams.put("param", "value");
VideoCodecInfo hwVp8Encoder = new VideoCodecInfo("VP8", hwVp8EncoderParams);
VideoEncoderFactory hwFactory = new CustomHardwareVideoEncoderFactory(hwVp8Encoder);
DefaultVideoEncoderFactory defFactory = new DefaultVideoEncoderFactory(hwFactory);
VideoCodecInfo[] supportedCodecs = defFactory.getSupportedCodecs();

View File

@ -227,9 +227,7 @@ public class GlRectDrawerTest {
@Test
@MediumTest
public void testOesRendering() throws InterruptedException {
/**
* Stub class to convert RGB ByteBuffers to OES textures by drawing onto a SurfaceTexture.
*/
// Stub class to convert RGB ByteBuffers to OES textures by drawing onto a SurfaceTexture.
class StubOesTextureProducer {
private final EglBase eglBase;
private final GlRectDrawer drawer;

View File

@ -126,9 +126,8 @@ public class SurfaceViewRendererOnMeasureTest {
public void testFrame1280x720() throws InterruptedException {
final SurfaceViewRenderer surfaceViewRenderer =
new SurfaceViewRenderer(InstrumentationRegistry.getContext());
/**
* Mock renderer events with blocking wait functionality for frame size changes.
*/
// Mock renderer events with blocking wait functionality for frame size changes.
class MockRendererEvents implements RendererCommon.RendererEvents {
private int frameWidth;
private int frameHeight;

View File

@ -460,7 +460,7 @@ public class VideoFrameBufferTest {
@Test
@SmallTest
/** Test calling toI420() and comparing pixel content against I420 reference. */
// Test calling toI420() and comparing pixel content against I420 reference.
public void testToI420() {
final VideoFrame.I420Buffer referenceI420Buffer = createTestI420Buffer();
final VideoFrame.Buffer bufferToTest = createBufferToTest(referenceI420Buffer);
@ -476,7 +476,7 @@ public class VideoFrameBufferTest {
@Test
@SmallTest
/** Pure 2x scaling with no cropping. */
// Pure 2x scaling with no cropping.
public void testScale2x() {
testCropAndScale(0 /* cropX= */, 0 /* cropY= */, /* cropWidth= */ 16, /* cropHeight= */ 16,
/* scaleWidth= */ 8, /* scaleHeight= */ 8);
@ -484,7 +484,7 @@ public class VideoFrameBufferTest {
@Test
@SmallTest
/** Test cropping only X direction, with no scaling. */
// Test cropping only X direction, with no scaling.
public void testCropX() {
testCropAndScale(8 /* cropX= */, 0 /* cropY= */, /* cropWidth= */ 8, /* cropHeight= */ 16,
/* scaleWidth= */ 8, /* scaleHeight= */ 16);
@ -492,7 +492,7 @@ public class VideoFrameBufferTest {
@Test
@SmallTest
/** Test cropping only Y direction, with no scaling. */
// Test cropping only Y direction, with no scaling.
public void testCropY() {
testCropAndScale(0 /* cropX= */, 8 /* cropY= */, /* cropWidth= */ 16, /* cropHeight= */ 8,
/* scaleWidth= */ 16, /* scaleHeight= */ 8);
@ -500,7 +500,7 @@ public class VideoFrameBufferTest {
@Test
@SmallTest
/** Test center crop, with no scaling. */
// Test center crop, with no scaling.
public void testCenterCrop() {
testCropAndScale(4 /* cropX= */, 4 /* cropY= */, /* cropWidth= */ 8, /* cropHeight= */ 8,
/* scaleWidth= */ 8, /* scaleHeight= */ 8);
@ -508,7 +508,7 @@ public class VideoFrameBufferTest {
@Test
@SmallTest
/** Test non-center crop for right bottom corner, with no scaling. */
// Test non-center crop for right bottom corner, with no scaling.
public void testRightBottomCornerCrop() {
testCropAndScale(8 /* cropX= */, 8 /* cropY= */, /* cropWidth= */ 8, /* cropHeight= */ 8,
/* scaleWidth= */ 8, /* scaleHeight= */ 8);
@ -516,7 +516,7 @@ public class VideoFrameBufferTest {
@Test
@SmallTest
/** Test combined cropping and scaling. */
// Test combined cropping and scaling.
public void testCropAndScale() {
testCropAndScale(4 /* cropX= */, 4 /* cropY= */, /* cropWidth= */ 12, /* cropHeight= */ 12,
/* scaleWidth= */ 8, /* scaleHeight= */ 8);