// Copyright 2014 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_MOCK_DATA_CHANNEL_IMPL_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_MOCK_DATA_CHANNEL_IMPL_H_ #include <stdint.h> #include <string> #include "base/memory/raw_ptr.h" #include "third_party/webrtc/api/peer_connection_interface.h" namespace blink { // TODO(crbug.com/787254): Move this class out of the Blink API // when all its clients get Onion souped. class MockDataChannel : public webrtc::DataChannelInterface { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_MOCK_DATA_CHANNEL_IMPL_H_