mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00
Add rtc_ prefix to the event_log_visualizer directory.
No-Try: True Bug: None Change-Id: Iaa2b273ddab6567321f11bf74a91751cbdf957a5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/146710 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28681}
This commit is contained in:
parent
a72d583271
commit
575998c2da
16 changed files with 49 additions and 49 deletions
|
@ -256,26 +256,26 @@ if (!build_with_chromium) {
|
|||
proto_library("chart_proto") {
|
||||
visibility = [ "*" ]
|
||||
sources = [
|
||||
"event_log_visualizer/proto/chart.proto",
|
||||
"event_log_visualizer/proto/chart_enums.proto",
|
||||
"rtc_event_log_visualizer/proto/chart.proto",
|
||||
"rtc_event_log_visualizer/proto/chart_enums.proto",
|
||||
]
|
||||
proto_out_dir = "rtc_tools/event_log_visualizer/proto"
|
||||
proto_out_dir = "rtc_tools/rtc_event_log_visualizer/proto"
|
||||
}
|
||||
|
||||
rtc_static_library("event_log_visualizer_utils") {
|
||||
visibility = [ "*" ]
|
||||
sources = [
|
||||
"event_log_visualizer/analyzer.cc",
|
||||
"event_log_visualizer/analyzer.h",
|
||||
"event_log_visualizer/log_simulation.cc",
|
||||
"event_log_visualizer/log_simulation.h",
|
||||
"event_log_visualizer/plot_base.cc",
|
||||
"event_log_visualizer/plot_base.h",
|
||||
"event_log_visualizer/plot_protobuf.cc",
|
||||
"event_log_visualizer/plot_protobuf.h",
|
||||
"event_log_visualizer/plot_python.cc",
|
||||
"event_log_visualizer/plot_python.h",
|
||||
"event_log_visualizer/triage_notifications.h",
|
||||
"rtc_event_log_visualizer/analyzer.cc",
|
||||
"rtc_event_log_visualizer/analyzer.h",
|
||||
"rtc_event_log_visualizer/log_simulation.cc",
|
||||
"rtc_event_log_visualizer/log_simulation.h",
|
||||
"rtc_event_log_visualizer/plot_base.cc",
|
||||
"rtc_event_log_visualizer/plot_base.h",
|
||||
"rtc_event_log_visualizer/plot_protobuf.cc",
|
||||
"rtc_event_log_visualizer/plot_protobuf.h",
|
||||
"rtc_event_log_visualizer/plot_python.cc",
|
||||
"rtc_event_log_visualizer/plot_python.h",
|
||||
"rtc_event_log_visualizer/triage_notifications.h",
|
||||
]
|
||||
defines = [ "ENABLE_RTC_EVENT_LOG" ]
|
||||
deps = [
|
||||
|
@ -319,7 +319,7 @@ if (rtc_include_tests) {
|
|||
rtc_executable("event_log_visualizer") {
|
||||
testonly = true
|
||||
sources = [
|
||||
"event_log_visualizer/main.cc",
|
||||
"rtc_event_log_visualizer/main.cc",
|
||||
]
|
||||
|
||||
defines = [ "ENABLE_RTC_EVENT_LOG" ]
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "rtc_tools/event_log_visualizer/analyzer.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/analyzer.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
|
@ -59,7 +59,7 @@
|
|||
#include "rtc_base/numerics/sequence_number_util.h"
|
||||
#include "rtc_base/rate_statistics.h"
|
||||
#include "rtc_base/strings/string_builder.h"
|
||||
#include "rtc_tools/event_log_visualizer/log_simulation.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/log_simulation.h"
|
||||
|
||||
#ifndef BWE_TEST_LOGGING_COMPILE_TIME_ENABLE
|
||||
#define BWE_TEST_LOGGING_COMPILE_TIME_ENABLE 0
|
|
@ -8,8 +8,8 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_
|
||||
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_
|
||||
#ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_ANALYZER_H_
|
||||
#define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_ANALYZER_H_
|
||||
|
||||
#include <map>
|
||||
#include <memory>
|
||||
|
@ -21,8 +21,8 @@
|
|||
#include "logging/rtc_event_log/rtc_event_log_parser.h"
|
||||
#include "modules/audio_coding/neteq/tools/neteq_stats_getter.h"
|
||||
#include "rtc_base/strings/string_builder.h"
|
||||
#include "rtc_tools/event_log_visualizer/plot_base.h"
|
||||
#include "rtc_tools/event_log_visualizer/triage_notifications.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/plot_base.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/triage_notifications.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -302,4 +302,4 @@ class EventLogAnalyzer {
|
|||
|
||||
} // namespace webrtc
|
||||
|
||||
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_
|
||||
#endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_ANALYZER_H_
|
|
@ -7,7 +7,7 @@
|
|||
* in the file PATENTS. All contributing project authors may
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
#include "rtc_tools/event_log_visualizer/log_simulation.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/log_simulation.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <utility>
|
|
@ -7,8 +7,8 @@
|
|||
* in the file PATENTS. All contributing project authors may
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_
|
||||
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_
|
||||
#ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_
|
||||
#define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_
|
||||
|
||||
#include <deque>
|
||||
#include <functional>
|
||||
|
@ -61,4 +61,4 @@ class LogBasedNetworkControllerSimulation {
|
|||
};
|
||||
} // namespace webrtc
|
||||
|
||||
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_
|
||||
#endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_
|
|
@ -29,10 +29,10 @@
|
|||
#include "modules/audio_coding/neteq/include/neteq.h"
|
||||
#include "modules/rtp_rtcp/source/rtcp_packet/report_block.h"
|
||||
#include "rtc_base/checks.h"
|
||||
#include "rtc_tools/event_log_visualizer/analyzer.h"
|
||||
#include "rtc_tools/event_log_visualizer/plot_base.h"
|
||||
#include "rtc_tools/event_log_visualizer/plot_protobuf.h"
|
||||
#include "rtc_tools/event_log_visualizer/plot_python.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/analyzer.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/plot_base.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/plot_protobuf.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/plot_python.h"
|
||||
#include "system_wrappers/include/field_trial.h"
|
||||
#include "test/field_trial.h"
|
||||
#include "test/testsupport/file_utils.h"
|
|
@ -8,7 +8,7 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "rtc_tools/event_log_visualizer/plot_base.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/plot_base.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
|
@ -7,8 +7,8 @@
|
|||
* in the file PATENTS. All contributing project authors may
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_BASE_H_
|
||||
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_BASE_H_
|
||||
#ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_BASE_H_
|
||||
#define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_BASE_H_
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
@ -184,4 +184,4 @@ class PlotCollection {
|
|||
|
||||
} // namespace webrtc
|
||||
|
||||
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_BASE_H_
|
||||
#endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_BASE_H_
|
|
@ -8,7 +8,7 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "rtc_tools/event_log_visualizer/plot_protobuf.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/plot_protobuf.h"
|
||||
|
||||
#include <stddef.h>
|
||||
|
|
@ -7,14 +7,14 @@
|
|||
* in the file PATENTS. All contributing project authors may
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_
|
||||
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_
|
||||
#ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_
|
||||
#define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_
|
||||
|
||||
#include "rtc_base/ignore_wundef.h"
|
||||
RTC_PUSH_IGNORING_WUNDEF()
|
||||
#include "rtc_tools/event_log_visualizer/proto/chart.pb.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/proto/chart.pb.h"
|
||||
RTC_POP_IGNORING_WUNDEF()
|
||||
#include "rtc_tools/event_log_visualizer/plot_base.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/plot_base.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -37,4 +37,4 @@ class ProtobufPlotCollection final : public PlotCollection {
|
|||
|
||||
} // namespace webrtc
|
||||
|
||||
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_
|
||||
#endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_
|
|
@ -8,7 +8,7 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "rtc_tools/event_log_visualizer/plot_python.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/plot_python.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
@ -7,10 +7,10 @@
|
|||
* in the file PATENTS. All contributing project authors may
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_
|
||||
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_
|
||||
#ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_
|
||||
#define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_
|
||||
|
||||
#include "rtc_tools/event_log_visualizer/plot_base.h"
|
||||
#include "rtc_tools/rtc_event_log_visualizer/plot_base.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -34,4 +34,4 @@ class PythonPlotCollection final : public PlotCollection {
|
|||
|
||||
} // namespace webrtc
|
||||
|
||||
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_
|
||||
#endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_
|
|
@ -8,8 +8,8 @@
|
|||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_
|
||||
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_
|
||||
#ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_
|
||||
#define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_
|
||||
|
||||
#include <string>
|
||||
|
||||
|
@ -155,4 +155,4 @@ class OutgoingHighLoss {
|
|||
|
||||
} // namespace webrtc
|
||||
|
||||
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_
|
||||
#endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_
|
Loading…
Reference in a new issue