mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 23:01:21 +01:00
Delete deprecated rtc_event_log_factory_interface.h
Bug: webrtc:10206 Change-Id: I9a2cca368ff19b18218c457f6b1401d89c7f2fe4 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/151304 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29073}
This commit is contained in:
parent
24b945d605
commit
9305d11f17
5 changed files with 3 additions and 22 deletions
|
@ -315,9 +315,9 @@ rtc_source_set("peer_connection_quality_test_fixture_api") {
|
||||||
":simulated_network_api",
|
":simulated_network_api",
|
||||||
":stats_observer_interface",
|
":stats_observer_interface",
|
||||||
":video_quality_analyzer_api",
|
":video_quality_analyzer_api",
|
||||||
"../logging:rtc_event_log_api",
|
|
||||||
"../media:rtc_media_base",
|
"../media:rtc_media_base",
|
||||||
"../rtc_base:rtc_base",
|
"../rtc_base:rtc_base",
|
||||||
|
"rtc_event_log",
|
||||||
"task_queue",
|
"task_queue",
|
||||||
"transport:network_control",
|
"transport:network_control",
|
||||||
"units:time_delta",
|
"units:time_delta",
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
#include "api/function_view.h"
|
#include "api/function_view.h"
|
||||||
#include "api/media_transport_interface.h"
|
#include "api/media_transport_interface.h"
|
||||||
#include "api/peer_connection_interface.h"
|
#include "api/peer_connection_interface.h"
|
||||||
|
#include "api/rtc_event_log/rtc_event_log_factory_interface.h"
|
||||||
#include "api/task_queue/task_queue_factory.h"
|
#include "api/task_queue/task_queue_factory.h"
|
||||||
#include "api/test/audio_quality_analyzer_interface.h"
|
#include "api/test/audio_quality_analyzer_interface.h"
|
||||||
#include "api/test/simulated_network.h"
|
#include "api/test/simulated_network.h"
|
||||||
|
@ -33,7 +34,6 @@
|
||||||
#include "api/video_codecs/video_decoder_factory.h"
|
#include "api/video_codecs/video_decoder_factory.h"
|
||||||
#include "api/video_codecs/video_encoder.h"
|
#include "api/video_codecs/video_encoder.h"
|
||||||
#include "api/video_codecs/video_encoder_factory.h"
|
#include "api/video_codecs/video_encoder_factory.h"
|
||||||
#include "logging/rtc_event_log/rtc_event_log_factory_interface.h"
|
|
||||||
#include "media/base/media_constants.h"
|
#include "media/base/media_constants.h"
|
||||||
#include "rtc_base/network.h"
|
#include "rtc_base/network.h"
|
||||||
#include "rtc_base/rtc_certificate_generator.h"
|
#include "rtc_base/rtc_certificate_generator.h"
|
||||||
|
|
|
@ -30,7 +30,6 @@ rtc_source_set("rtc_event_log_api") {
|
||||||
sources = [
|
sources = [
|
||||||
"rtc_event_log/encoder/rtc_event_log_encoder.h",
|
"rtc_event_log/encoder/rtc_event_log_encoder.h",
|
||||||
"rtc_event_log/events/rtc_event.h",
|
"rtc_event_log/events/rtc_event.h",
|
||||||
"rtc_event_log/rtc_event_log_factory_interface.h",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
deps = [
|
deps = [
|
||||||
|
|
|
@ -13,8 +13,8 @@
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
#include "api/rtc_event_log/rtc_event_log_factory_interface.h"
|
||||||
#include "logging/rtc_event_log/fake_rtc_event_log.h"
|
#include "logging/rtc_event_log/fake_rtc_event_log.h"
|
||||||
#include "logging/rtc_event_log/rtc_event_log_factory_interface.h"
|
|
||||||
#include "rtc_base/thread.h"
|
#include "rtc_base/thread.h"
|
||||||
|
|
||||||
namespace webrtc {
|
namespace webrtc {
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Use of this source code is governed by a BSD-style license
|
|
||||||
* that can be found in the LICENSE file in the root of the source
|
|
||||||
* tree. An additional intellectual property rights grant can be found
|
|
||||||
* in the file PATENTS. All contributing project authors may
|
|
||||||
* be found in the AUTHORS file in the root of the source tree.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_FACTORY_INTERFACE_H_
|
|
||||||
#define LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_FACTORY_INTERFACE_H_
|
|
||||||
|
|
||||||
// TODO(bugs.webrtc.org/10206): For backwards compatibility; Delete as soon as
|
|
||||||
// dependencies are updated.
|
|
||||||
#include "api/rtc_event_log/rtc_event_log_factory_interface.h"
|
|
||||||
|
|
||||||
#endif // LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_FACTORY_INTERFACE_H_
|
|
Loading…
Reference in a new issue