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:
Mirko Bonadei 2019-07-25 13:57:41 +02:00 committed by Commit Bot
parent a72d583271
commit 575998c2da
16 changed files with 49 additions and 49 deletions

View file

@ -256,26 +256,26 @@ if (!build_with_chromium) {
proto_library("chart_proto") { proto_library("chart_proto") {
visibility = [ "*" ] visibility = [ "*" ]
sources = [ sources = [
"event_log_visualizer/proto/chart.proto", "rtc_event_log_visualizer/proto/chart.proto",
"event_log_visualizer/proto/chart_enums.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") { rtc_static_library("event_log_visualizer_utils") {
visibility = [ "*" ] visibility = [ "*" ]
sources = [ sources = [
"event_log_visualizer/analyzer.cc", "rtc_event_log_visualizer/analyzer.cc",
"event_log_visualizer/analyzer.h", "rtc_event_log_visualizer/analyzer.h",
"event_log_visualizer/log_simulation.cc", "rtc_event_log_visualizer/log_simulation.cc",
"event_log_visualizer/log_simulation.h", "rtc_event_log_visualizer/log_simulation.h",
"event_log_visualizer/plot_base.cc", "rtc_event_log_visualizer/plot_base.cc",
"event_log_visualizer/plot_base.h", "rtc_event_log_visualizer/plot_base.h",
"event_log_visualizer/plot_protobuf.cc", "rtc_event_log_visualizer/plot_protobuf.cc",
"event_log_visualizer/plot_protobuf.h", "rtc_event_log_visualizer/plot_protobuf.h",
"event_log_visualizer/plot_python.cc", "rtc_event_log_visualizer/plot_python.cc",
"event_log_visualizer/plot_python.h", "rtc_event_log_visualizer/plot_python.h",
"event_log_visualizer/triage_notifications.h", "rtc_event_log_visualizer/triage_notifications.h",
] ]
defines = [ "ENABLE_RTC_EVENT_LOG" ] defines = [ "ENABLE_RTC_EVENT_LOG" ]
deps = [ deps = [
@ -319,7 +319,7 @@ if (rtc_include_tests) {
rtc_executable("event_log_visualizer") { rtc_executable("event_log_visualizer") {
testonly = true testonly = true
sources = [ sources = [
"event_log_visualizer/main.cc", "rtc_event_log_visualizer/main.cc",
] ]
defines = [ "ENABLE_RTC_EVENT_LOG" ] defines = [ "ENABLE_RTC_EVENT_LOG" ]

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * 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 <algorithm>
#include <cmath> #include <cmath>
@ -59,7 +59,7 @@
#include "rtc_base/numerics/sequence_number_util.h" #include "rtc_base/numerics/sequence_number_util.h"
#include "rtc_base/rate_statistics.h" #include "rtc_base/rate_statistics.h"
#include "rtc_base/strings/string_builder.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 #ifndef BWE_TEST_LOGGING_COMPILE_TIME_ENABLE
#define BWE_TEST_LOGGING_COMPILE_TIME_ENABLE 0 #define BWE_TEST_LOGGING_COMPILE_TIME_ENABLE 0

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ #ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_ANALYZER_H_
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ #define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_ANALYZER_H_
#include <map> #include <map>
#include <memory> #include <memory>
@ -21,8 +21,8 @@
#include "logging/rtc_event_log/rtc_event_log_parser.h" #include "logging/rtc_event_log/rtc_event_log_parser.h"
#include "modules/audio_coding/neteq/tools/neteq_stats_getter.h" #include "modules/audio_coding/neteq/tools/neteq_stats_getter.h"
#include "rtc_base/strings/string_builder.h" #include "rtc_base/strings/string_builder.h"
#include "rtc_tools/event_log_visualizer/plot_base.h" #include "rtc_tools/rtc_event_log_visualizer/plot_base.h"
#include "rtc_tools/event_log_visualizer/triage_notifications.h" #include "rtc_tools/rtc_event_log_visualizer/triage_notifications.h"
namespace webrtc { namespace webrtc {
@ -302,4 +302,4 @@ class EventLogAnalyzer {
} // namespace webrtc } // namespace webrtc
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_ANALYZER_H_ #endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_ANALYZER_H_

View file

@ -7,7 +7,7 @@
* in the file PATENTS. All contributing project authors may * in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree. * 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 <algorithm>
#include <utility> #include <utility>

View file

@ -7,8 +7,8 @@
* in the file PATENTS. All contributing project authors may * in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_ #ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_ #define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_
#include <deque> #include <deque>
#include <functional> #include <functional>
@ -61,4 +61,4 @@ class LogBasedNetworkControllerSimulation {
}; };
} // namespace webrtc } // namespace webrtc
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_ #endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_LOG_SIMULATION_H_

View file

@ -29,10 +29,10 @@
#include "modules/audio_coding/neteq/include/neteq.h" #include "modules/audio_coding/neteq/include/neteq.h"
#include "modules/rtp_rtcp/source/rtcp_packet/report_block.h" #include "modules/rtp_rtcp/source/rtcp_packet/report_block.h"
#include "rtc_base/checks.h" #include "rtc_base/checks.h"
#include "rtc_tools/event_log_visualizer/analyzer.h" #include "rtc_tools/rtc_event_log_visualizer/analyzer.h"
#include "rtc_tools/event_log_visualizer/plot_base.h" #include "rtc_tools/rtc_event_log_visualizer/plot_base.h"
#include "rtc_tools/event_log_visualizer/plot_protobuf.h" #include "rtc_tools/rtc_event_log_visualizer/plot_protobuf.h"
#include "rtc_tools/event_log_visualizer/plot_python.h" #include "rtc_tools/rtc_event_log_visualizer/plot_python.h"
#include "system_wrappers/include/field_trial.h" #include "system_wrappers/include/field_trial.h"
#include "test/field_trial.h" #include "test/field_trial.h"
#include "test/testsupport/file_utils.h" #include "test/testsupport/file_utils.h"

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * 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> #include <algorithm>

View file

@ -7,8 +7,8 @@
* in the file PATENTS. All contributing project authors may * in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_BASE_H_ #ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_BASE_H_
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_BASE_H_ #define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_BASE_H_
#include <memory> #include <memory>
#include <string> #include <string>
@ -184,4 +184,4 @@ class PlotCollection {
} // namespace webrtc } // namespace webrtc
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_BASE_H_ #endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_BASE_H_

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * 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> #include <stddef.h>

View file

@ -7,14 +7,14 @@
* in the file PATENTS. All contributing project authors may * in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_ #ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_ #define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_
#include "rtc_base/ignore_wundef.h" #include "rtc_base/ignore_wundef.h"
RTC_PUSH_IGNORING_WUNDEF() 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() 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 { namespace webrtc {
@ -37,4 +37,4 @@ class ProtobufPlotCollection final : public PlotCollection {
} // namespace webrtc } // namespace webrtc
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_ #endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PROTOBUF_H_

View file

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * 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> #include <stdio.h>

View file

@ -7,10 +7,10 @@
* in the file PATENTS. All contributing project authors may * in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ #ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_
#define RTC_TOOLS_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 { namespace webrtc {
@ -34,4 +34,4 @@ class PythonPlotCollection final : public PlotCollection {
} // namespace webrtc } // namespace webrtc
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_ #endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_PLOT_PYTHON_H_

View file

@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#ifndef RTC_TOOLS_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_ #ifndef RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_
#define RTC_TOOLS_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_ #define RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_
#include <string> #include <string>
@ -155,4 +155,4 @@ class OutgoingHighLoss {
} // namespace webrtc } // namespace webrtc
#endif // RTC_TOOLS_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_ #endif // RTC_TOOLS_RTC_EVENT_LOG_VISUALIZER_TRIAGE_NOTIFICATIONS_H_