IWYU candidate_pair_interface

and remove the forward declaration

BUG=webrtc:42226242

Change-Id: I6bff2ef5048e641c834f9e03620ce038f6513065
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/376920
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Philipp Hancke <phancke@meta.com>
Cr-Commit-Position: refs/heads/main@{#43941}
This commit is contained in:
Philipp Hancke 2025-02-11 11:56:21 -08:00 committed by WebRTC LUCI CQ
parent b300a9cc05
commit ad82b6e45b
2 changed files with 3 additions and 2 deletions

View File

@ -145,6 +145,7 @@ rtc_library("basic_port_allocator") {
rtc_source_set("candidate_pair_interface") { rtc_source_set("candidate_pair_interface") {
sources = [ "base/candidate_pair_interface.h" ] sources = [ "base/candidate_pair_interface.h" ]
deps = [ "../api:candidate" ]
} }
rtc_library("connection") { rtc_library("connection") {

View File

@ -11,9 +11,9 @@
#ifndef P2P_BASE_CANDIDATE_PAIR_INTERFACE_H_ #ifndef P2P_BASE_CANDIDATE_PAIR_INTERFACE_H_
#define P2P_BASE_CANDIDATE_PAIR_INTERFACE_H_ #define P2P_BASE_CANDIDATE_PAIR_INTERFACE_H_
namespace cricket { #include "api/candidate.h"
class Candidate; namespace cricket {
class CandidatePairInterface { class CandidatePairInterface {
public: public: