Remove more top-level const from parameters in function declarations

This CL removes even more top-level const from parameters in function
declarations. This change is safe because top-level const in function
declarations (not function definitions) are ignored by the compiler
and so change is just a no-op cleanup.

Bug: webrtc:13610
Change-Id: Icf6868c27b1fdb9d9915b3a7020eb34bdcf07a09
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/249989
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Ali Tofigh <alito@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#35866}
This commit is contained in:
Ali Tofigh
2022-01-31 11:08:24 +01:00
committed by WebRTC LUCI CQ
parent b6653d9967
commit 1e157a9596
12 changed files with 22 additions and 26 deletions

View File

@ -41,7 +41,7 @@ std::unique_ptr<VideoEncoderFactory> JavaToNativeVideoEncoderFactory(
// of ResolutionBitrateLimits.
std::vector<VideoEncoder::ResolutionBitrateLimits>
JavaToNativeResolutionBitrateLimits(JNIEnv* jni,
const jobjectArray j_bitrate_limits_array);
jobjectArray j_bitrate_limits_array);
} // namespace webrtc