chromium/third_party/blink/renderer/modules/peerconnection/testing/fake_webrtc_data_channel.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_TESTING_FAKE_WEBRTC_DATA_CHANNEL_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_TESTING_FAKE_WEBRTC_DATA_CHANNEL_H_

#include "third_party/webrtc/api/data_channel_interface.h"

namespace webrtc {
class DataChannelObserver;
}

namespace blink {

class FakeWebRTCDataChannel : public webrtc::DataChannelInterface {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_TESTING_FAKE_WEBRTC_DATA_CHANNEL_H_