Auto-Submit | +1 |
Commit-Queue | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
bool AddIceCandidate(const webrtc::IceCandidate* candidate) override;
This comment was generated by [Experimental Blink C++ Code Review Agent](http://go/blink-c++-code-review-agent) \
To opt out permanently, please join [Blink AIAgent Optout](https://ganpati2.corp.google.com/group/peep-genai-blink-agent-optout.prod)
Blink Style Guide: Naming - May leave obvious parameter names out of function declarations. The parameter name `candidate` is redundant given the type `IceCandidate` in both `AddIceCandidate` overloads and can be omitted from the header declaration.
For a quick and terse communication, please consider using one of these options: \
Done | b/<bug_id> | Invalid: reason | Won't fix: reason<br/>
NOTE: AI reviews can give wrong results. \
We apologize in advance for any inconvenience and would love to take your feedback to make this better. \
[file a bug](http://go/blink-c++-code-review-agent-feedback) or [ping us on chat](https://chat.google.com/room/AAQA0zhQHe0?cls=4)
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Commit-Queue | +2 |
bool AddIceCandidate(const webrtc::IceCandidate* candidate) override;
This comment was generated by [Experimental Blink C++ Code Review Agent](http://go/blink-c++-code-review-agent) \
To opt out permanently, please join [Blink AIAgent Optout](https://ganpati2.corp.google.com/group/peep-genai-blink-agent-optout.prod)Blink Style Guide: Naming - May leave obvious parameter names out of function declarations. The parameter name `candidate` is redundant given the type `IceCandidate` in both `AddIceCandidate` overloads and can be omitted from the header declaration.
For a quick and terse communication, please consider using one of these options: \
Done | b/<bug_id> | Invalid: reason | Won't fix: reason<br/>NOTE: AI reviews can give wrong results. \
We apologize in advance for any inconvenience and would love to take your feedback to make this better. \
[file a bug](http://go/blink-c++-code-review-agent-feedback) or [ping us on chat](https://chat.google.com/room/AAQA0zhQHe0?cls=4)
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
webrtc: Replace IceCandidateInterface with IceCandidate
The `webrtc::IceCandidateInterface` type is a deprecated alias for
`webrtc::IceCandidate` and is scheduled for removal from the WebRTC
library.
This patch replaces all instances of the deprecated interface with the
canonical `IceCandidate` type.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |