commit | 7abf45fe2c72067956a2f44a4b43106cad52c5e9 | [log] [tgz] |
---|---|---|
author | Anton Bikineev <bikineev@chromium.org> | Sun Jan 23 21:22:59 2022 |
committer | WebRTC LUCI CQ <webrtc-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Jan 24 20:42:01 2022 |
tree | 489023ec810179b07d1d57d5721e7f7ddddff20b | |
parent | 9d230d54c7eef31ac1100f0aeef1374dd1ac62fa [diff] |
LSC: Apply clang-tidy's modernize-use-bool-literals The check finds implicit conversions of integer literals to bools: bool b1 = 1; bool b2 = static_cast<bool>(1); and transforms them to: bool b1 = true; bool b2 = true; Bug: chromium:1290142 Change-Id: I6819a0bd2ca84ecadae08ed9389c17d2652589f4 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/248166 Auto-Submit: Anton Bikineev <bikineev@chromium.org> Reviewed-by: Magnus Flodman <mflodman@webrtc.org> Commit-Queue: Anton Bikineev <bikineev@chromium.org> Cr-Commit-Position: refs/heads/main@{#35778}
WebRTC is a free, open software project that provides browsers and mobile applications with Real-Time Communications (RTC) capabilities via simple APIs. The WebRTC components have been optimized to best serve this purpose.
Our mission: To enable rich, high-quality RTC applications to be developed for the browser, mobile platforms, and IoT devices, and allow them all to communicate via a common set of protocols.
The WebRTC initiative is a project supported by Google, Mozilla and Opera, amongst others.
See here for instructions on how to get started developing with the native code.
Authoritative list of directories that contain the native API header files.