diff --git a/webrtc/modules/audio_coding/acm2/acm_codec_database.cc b/webrtc/modules/audio_coding/acm2/acm_codec_database.cc index c6d17d30d5..7bd8ee7576 100644 --- a/webrtc/modules/audio_coding/acm2/acm_codec_database.cc +++ b/webrtc/modules/audio_coding/acm2/acm_codec_database.cc @@ -19,7 +19,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #if ((defined WEBRTC_CODEC_ISAC) && (defined WEBRTC_CODEC_ISACFX)) #error iSAC and iSACFX codecs cannot be enabled at the same time diff --git a/webrtc/modules/audio_coding/acm2/acm_receive_test.h b/webrtc/modules/audio_coding/acm2/acm_receive_test.h index 107697854e..c7faa567ba 100644 --- a/webrtc/modules/audio_coding/acm2/acm_receive_test.h +++ b/webrtc/modules/audio_coding/acm2/acm_receive_test.h @@ -15,8 +15,8 @@ #include #include "webrtc/api/audio_codecs/audio_decoder_factory.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/acm_receiver.cc b/webrtc/modules/audio_coding/acm2/acm_receiver.cc index 8be08a2097..2e0d8bc7c9 100644 --- a/webrtc/modules/audio_coding/acm2/acm_receiver.cc +++ b/webrtc/modules/audio_coding/acm2/acm_receiver.cc @@ -16,17 +16,17 @@ #include #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/format_macros.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/acm2/acm_resampler.h" #include "webrtc/modules/audio_coding/acm2/call_statistics.h" -#include "webrtc/modules/audio_coding/neteq/include/neteq.h" -#include "webrtc/system_wrappers/include/clock.h" #include "webrtc/modules/audio_coding/acm2/rent_a_codec.h" +#include "webrtc/modules/audio_coding/neteq/include/neteq.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_conversions.h" +#include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/acm_receiver.h b/webrtc/modules/audio_coding/acm2/acm_receiver.h index b374495b3b..f51f9b7121 100644 --- a/webrtc/modules/audio_coding/acm2/acm_receiver.h +++ b/webrtc/modules/audio_coding/acm2/acm_receiver.h @@ -16,16 +16,16 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/common_audio/vad/include/webrtc_vad.h" #include "webrtc/modules/audio_coding/acm2/acm_resampler.h" #include "webrtc/modules/audio_coding/acm2/call_statistics.h" #include "webrtc/modules/audio_coding/include/audio_coding_module.h" #include "webrtc/modules/audio_coding/neteq/include/neteq.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/acm_receiver_unittest.cc b/webrtc/modules/audio_coding/acm2/acm_receiver_unittest.cc index af23e17ac4..4026c5b8e4 100644 --- a/webrtc/modules/audio_coding/acm2/acm_receiver_unittest.cc +++ b/webrtc/modules/audio_coding/acm2/acm_receiver_unittest.cc @@ -14,11 +14,11 @@ #include #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/audio_coding/acm2/rent_a_codec.h" #include "webrtc/modules/audio_coding/include/audio_coding_module.h" #include "webrtc/modules/audio_coding/neteq/tools/rtp_generator.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_coding/acm2/acm_resampler.cc b/webrtc/modules/audio_coding/acm2/acm_resampler.cc index da0d2e531e..555263a2d1 100644 --- a/webrtc/modules/audio_coding/acm2/acm_resampler.cc +++ b/webrtc/modules/audio_coding/acm2/acm_resampler.cc @@ -14,7 +14,7 @@ #include #include "webrtc/common_audio/resampler/include/resampler.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace acm2 { diff --git a/webrtc/modules/audio_coding/acm2/acm_send_test.cc b/webrtc/modules/audio_coding/acm2/acm_send_test.cc index 787bea8947..a88ba7d3a0 100644 --- a/webrtc/modules/audio_coding/acm2/acm_send_test.cc +++ b/webrtc/modules/audio_coding/acm2/acm_send_test.cc @@ -15,10 +15,10 @@ #include #include "webrtc/api/audio_codecs/audio_encoder.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/include/audio_coding_module.h" #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" #include "webrtc/modules/audio_coding/neteq/tools/packet.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/acm_send_test.h b/webrtc/modules/audio_coding/acm2/acm_send_test.h index 96531a3294..b451e994c6 100644 --- a/webrtc/modules/audio_coding/acm2/acm_send_test.h +++ b/webrtc/modules/audio_coding/acm2/acm_send_test.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/include/audio_coding_module.h" #include "webrtc/modules/audio_coding/neteq/tools/packet_source.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/audio_coding_module.cc b/webrtc/modules/audio_coding/acm2/audio_coding_module.cc index d231a8447e..efdfcd472b 100644 --- a/webrtc/modules/audio_coding/acm2/audio_coding_module.cc +++ b/webrtc/modules/audio_coding/acm2/audio_coding_module.cc @@ -11,13 +11,13 @@ #include "webrtc/modules/audio_coding/include/audio_coding_module.h" #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/audio_coding/acm2/acm_receiver.h" #include "webrtc/modules/audio_coding/acm2/acm_resampler.h" #include "webrtc/modules/audio_coding/acm2/codec_manager.h" #include "webrtc/modules/audio_coding/acm2/rent_a_codec.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest.cc b/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest.cc index 236501a6f9..00bedd9f10 100644 --- a/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest.cc +++ b/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest.cc @@ -15,10 +15,6 @@ #include "webrtc/api/audio_codecs/audio_encoder.h" #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/md5digest.h" -#include "webrtc/base/platform_thread.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/audio_coding/acm2/acm_receive_test.h" #include "webrtc/modules/audio_coding/acm2/acm_send_test.h" #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h" @@ -38,6 +34,10 @@ #include "webrtc/modules/audio_coding/neteq/tools/packet.h" #include "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/md5digest.h" +#include "webrtc/rtc_base/platform_thread.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/system_wrappers/include/sleep.h" diff --git a/webrtc/modules/audio_coding/acm2/call_statistics.cc b/webrtc/modules/audio_coding/acm2/call_statistics.cc index 7ac9fc4b0f..28511e90b6 100644 --- a/webrtc/modules/audio_coding/acm2/call_statistics.cc +++ b/webrtc/modules/audio_coding/acm2/call_statistics.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/audio_coding/acm2/call_statistics.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/codec_manager.cc b/webrtc/modules/audio_coding/acm2/codec_manager.cc index e218080057..7bbafc732a 100644 --- a/webrtc/modules/audio_coding/acm2/codec_manager.cc +++ b/webrtc/modules/audio_coding/acm2/codec_manager.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/audio_coding/acm2/codec_manager.h" -#include "webrtc/base/checks.h" -//#include "webrtc/base/format_macros.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +//#include "webrtc/rtc_base/format_macros.h" #include "webrtc/modules/audio_coding/acm2/rent_a_codec.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/codec_manager.h b/webrtc/modules/audio_coding/acm2/codec_manager.h index b60b7e7bcb..3d45b335bc 100644 --- a/webrtc/modules/audio_coding/acm2/codec_manager.h +++ b/webrtc/modules/audio_coding/acm2/codec_manager.h @@ -13,13 +13,13 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/thread_checker.h" +#include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/acm2/rent_a_codec.h" #include "webrtc/modules/audio_coding/include/audio_coding_module.h" #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" -#include "webrtc/common_types.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/rent_a_codec.cc b/webrtc/modules/audio_coding/acm2/rent_a_codec.cc index 8456285e49..491df316ba 100644 --- a/webrtc/modules/audio_coding/acm2/rent_a_codec.cc +++ b/webrtc/modules/audio_coding/acm2/rent_a_codec.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h" #include "webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h" +#include "webrtc/rtc_base/logging.h" #ifdef WEBRTC_CODEC_G722 #include "webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.h" #endif diff --git a/webrtc/modules/audio_coding/acm2/rent_a_codec.h b/webrtc/modules/audio_coding/acm2/rent_a_codec.h index 85393dcd3e..a9ed85ca9e 100644 --- a/webrtc/modules/audio_coding/acm2/rent_a_codec.h +++ b/webrtc/modules/audio_coding/acm2/rent_a_codec.h @@ -17,12 +17,12 @@ #include "webrtc/api/audio_codecs/audio_decoder.h" #include "webrtc/api/audio_codecs/audio_encoder.h" -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" #include "webrtc/modules/audio_coding/neteq/neteq_decoder_enum.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc b/webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc index 4363e6337d..dcf63834ef 100644 --- a/webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc +++ b/webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc @@ -10,8 +10,8 @@ #include -#include "webrtc/base/arraysize.h" #include "webrtc/modules/audio_coding/acm2/rent_a_codec.h" +#include "webrtc/rtc_base/arraysize.h" #include "webrtc/test/gtest.h" #include "webrtc/test/mock_audio_encoder.h" diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.cc b/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.cc index d41a0381fc..7645c4a1f2 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.h b/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.h index 358a01472b..7d7a2cb086 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.h @@ -13,12 +13,12 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc b/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc index a8cecb334b..1914939566 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc @@ -11,12 +11,12 @@ #include #include -#include "webrtc/base/fakeclock.h" #include "webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_controller.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_controller_manager.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_debug_dump_writer.h" +#include "webrtc/rtc_base/fakeclock.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc b/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc index 92a9fada46..23db2cdd0c 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/field_trial.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h b/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h index ac13c50be8..740edbd4e0 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_BITRATE_CONTROLLER_H_ #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_BITRATE_CONTROLLER_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace audio_network_adaptor { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.cc b/webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.cc index 90c1e56417..052808d71a 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.cc @@ -11,7 +11,7 @@ #include #include "webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.h b/webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.h index 9355d30db8..4920668d79 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CHANNEL_CONTROLLER_H_ #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CHANNEL_CONTROLLER_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/controller.h b/webrtc/modules/audio_coding/audio_network_adaptor/controller.h index 4ae7951bab..ab9cfb706f 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/controller.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/controller.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_H_ #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_CONTROLLER_H_ -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.cc b/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.cc index 67bc89990c..bfbb7ea571 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.cc @@ -13,8 +13,6 @@ #include #include -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/channel_controller.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.h" @@ -23,6 +21,8 @@ #include "webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_rplr_based.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/util/threshold_curve.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/timeutils.h" #if WEBRTC_ENABLE_PROTOBUF RTC_PUSH_IGNORING_WUNDEF() diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.h b/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.h index 151c420604..78e962c3db 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.h @@ -15,9 +15,9 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/protobuf_utils.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/protobuf_utils.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager_unittest.cc b/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager_unittest.cc index e638740305..aa4ff36502 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager_unittest.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/controller_manager_unittest.cc @@ -10,12 +10,12 @@ #include -#include "webrtc/base/fakeclock.h" -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/protobuf_utils.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_controller.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_debug_dump_writer.h" +#include "webrtc/rtc_base/fakeclock.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/protobuf_utils.h" #include "webrtc/test/gtest.h" #if WEBRTC_ENABLE_PROTOBUF diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.cc b/webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.cc index 9fc590cba1..b3e87766f7 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/protobuf_utils.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/protobuf_utils.h" #if WEBRTC_ENABLE_PROTOBUF RTC_PUSH_IGNORING_WUNDEF() diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.h b/webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.h index f4e6004361..0d9206d3b4 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/debug_dump_writer.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/ignore_wundef.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/ignore_wundef.h" #include "webrtc/system_wrappers/include/file_wrapper.h" #if WEBRTC_ENABLE_PROTOBUF RTC_PUSH_IGNORING_WUNDEF() diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/dtx_controller.cc b/webrtc/modules/audio_coding/audio_network_adaptor/dtx_controller.cc index fc1f44d84a..1941a5e171 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/dtx_controller.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/dtx_controller.cc @@ -9,7 +9,7 @@ */ #include "webrtc/modules/audio_coding/audio_network_adaptor/dtx_controller.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/dtx_controller.h b/webrtc/modules/audio_coding/audio_network_adaptor/dtx_controller.h index 583ef3c65f..2945e1163a 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/dtx_controller.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/dtx_controller.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_DTX_CONTROLLER_H_ #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_DTX_CONTROLLER_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h b/webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h index d0b38bd25f..7f7acef17f 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/event_log_writer.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_EVENT_LOG_WRITER_H_ #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_EVENT_LOG_WRITER_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { class RtcEventLog; diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_plr_based.cc b/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_plr_based.cc index 481f78d7cd..58644b9f1a 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_plr_based.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_plr_based.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/field_trial.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_plr_based.h b/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_plr_based.h index 3913abbdaa..9259f309a4 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_plr_based.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_plr_based.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/smoothing_filter.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/util/threshold_curve.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_rplr_based.cc b/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_rplr_based.cc index a51c277b66..0cf6d3bc39 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_rplr_based.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_rplr_based.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_rplr_based.h b/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_rplr_based.h index b2904b38be..ce04dc7698 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_rplr_based.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/fec_controller_rplr_based.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/util/threshold_curve.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller.cc b/webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller.cc index 5111b8a2b8..49b1d4deb3 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller.cc +++ b/webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller.h b/webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller.h index 458938271d..47a48fcd6f 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h b/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h index 2ef88542ee..6d03730a17 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_INCLUDE_AUDIO_NETWORK_ADAPTOR_H_ #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_INCLUDE_AUDIO_NETWORK_ADAPTOR_H_ -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/util/threshold_curve.h b/webrtc/modules/audio_coding/audio_network_adaptor/util/threshold_curve.h index 87ffc02495..2f816db6a7 100644 --- a/webrtc/modules/audio_coding/audio_network_adaptor/util/threshold_curve.h +++ b/webrtc/modules/audio_coding/audio_network_adaptor/util/threshold_curve.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_UTIL_THRESHOLD_CURVE_H_ #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_UTIL_THRESHOLD_CURVE_H_ -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/audio_format_conversion.cc b/webrtc/modules/audio_coding/codecs/audio_format_conversion.cc index a858053c78..af58bc481f 100644 --- a/webrtc/modules/audio_coding/codecs/audio_format_conversion.cc +++ b/webrtc/modules/audio_coding/codecs/audio_format_conversion.cc @@ -12,11 +12,11 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/safe_conversions.h" -#include "webrtc/base/sanitizer.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/safe_conversions.h" +#include "webrtc/rtc_base/sanitizer.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc b/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc index 8d8025718a..3624c79f27 100644 --- a/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc +++ b/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc @@ -13,11 +13,11 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/optional.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/cng/webrtc_cng.h" #include "webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/optional.h" #ifdef WEBRTC_CODEC_G722 #include "webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h" #endif diff --git a/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.h b/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.h index 10f356affc..c856954512 100644 --- a/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.h +++ b/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.h @@ -12,7 +12,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_BUILTIN_AUDIO_DECODER_FACTORY_INTERNAL_H_ #include "webrtc/api/audio_codecs/audio_decoder_factory.h" -#include "webrtc/base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory_internal.cc b/webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory_internal.cc index 3c8c03065a..2876440525 100644 --- a/webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory_internal.cc +++ b/webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory_internal.cc @@ -13,11 +13,11 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/optional.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/optional.h" #ifdef WEBRTC_CODEC_G722 #include "webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.h" #endif diff --git a/webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory_internal.h b/webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory_internal.h index 81833317d2..327e6ca4e5 100644 --- a/webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory_internal.h +++ b/webrtc/modules/audio_coding/codecs/builtin_audio_encoder_factory_internal.h @@ -12,7 +12,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_BUILTIN_AUDIO_ENCODER_FACTORY_INTERNAL_H_ #include "webrtc/api/audio_codecs/audio_encoder_factory.h" -#include "webrtc/base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h b/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h index 9e85edf0c4..563e997ebb 100644 --- a/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h +++ b/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h @@ -15,9 +15,9 @@ #include #include "webrtc/api/audio_codecs/audio_encoder.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/vad/include/vad.h" #include "webrtc/modules/audio_coding/codecs/cng/webrtc_cng.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng_unittest.cc b/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng_unittest.cc index 87466df814..5de1b03c84 100644 --- a/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng_unittest.cc +++ b/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng_unittest.cc @@ -11,9 +11,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/vad/mock/mock_vad.h" #include "webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/test/gtest.h" #include "webrtc/test/mock_audio_encoder.h" diff --git a/webrtc/modules/audio_coding/codecs/cng/webrtc_cng.cc b/webrtc/modules/audio_coding/codecs/cng/webrtc_cng.cc index 886b5fc325..9461cd00b9 100644 --- a/webrtc/modules/audio_coding/codecs/cng/webrtc_cng.cc +++ b/webrtc/modules/audio_coding/codecs/cng/webrtc_cng.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/safe_conversions.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" +#include "webrtc/rtc_base/safe_conversions.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/cng/webrtc_cng.h b/webrtc/modules/audio_coding/codecs/cng/webrtc_cng.h index fb0a53df27..c7513413d8 100644 --- a/webrtc/modules/audio_coding/codecs/cng/webrtc_cng.h +++ b/webrtc/modules/audio_coding/codecs/cng/webrtc_cng.h @@ -14,8 +14,8 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/buffer.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/buffer.h" #include "webrtc/typedefs.h" #define WEBRTC_CNG_MAX_LPC_ORDER 12 diff --git a/webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h b/webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h index 563d6aeaad..f72f202f37 100644 --- a/webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h +++ b/webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h @@ -12,8 +12,8 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_G711_AUDIO_DECODER_PCM_H_ #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc b/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc index 113fb63f55..8bff2ec1ee 100644 --- a/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc +++ b/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/string_to_number.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/g711/g711_interface.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/string_to_number.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h b/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h index b563af17bd..be8164aeee 100644 --- a/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h +++ b/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h @@ -15,7 +15,7 @@ #include "webrtc/api/audio_codecs/audio_encoder.h" #include "webrtc/api/audio_codecs/audio_format.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.cc b/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.cc index f092e516ed..7e597f80ac 100644 --- a/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.cc +++ b/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.cc @@ -12,9 +12,9 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h" #include "webrtc/modules/audio_coding/codecs/g722/g722_interface.h" +#include "webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h b/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h index 0a530190fe..ee2270f323 100644 --- a/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h +++ b/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h @@ -12,7 +12,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_G722_AUDIO_DECODER_G722_H_ #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" typedef struct WebRtcG722DecInst G722DecInst; diff --git a/webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.cc b/webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.cc index 8d254b83cc..f936e815a7 100644 --- a/webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.cc +++ b/webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.cc @@ -13,11 +13,11 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" -#include "webrtc/base/string_to_number.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/g722/g722_interface.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" +#include "webrtc/rtc_base/string_to_number.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.h b/webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.h index ce87b2cdd3..00d1c0f3e6 100644 --- a/webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.h +++ b/webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.h @@ -16,9 +16,9 @@ #include "webrtc/api/audio_codecs/audio_encoder.h" #include "webrtc/api/audio_codecs/audio_format.h" #include "webrtc/api/audio_codecs/g722/audio_encoder_g722_config.h" -#include "webrtc/base/buffer.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/codecs/g722/g722_interface.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.cc b/webrtc/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.cc index a95c7d5a17..61ec7bd562 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.cc +++ b/webrtc/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_coding/codecs/ilbc/ilbc.h" #include "webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.h b/webrtc/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.h index 5269f4d456..f2320fadff 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.h +++ b/webrtc/modules/audio_coding/codecs/ilbc/audio_decoder_ilbc.h @@ -12,7 +12,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ILBC_AUDIO_DECODER_ILBC_H_ #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" typedef struct iLBC_decinst_t_ IlbcDecoderInstance; diff --git a/webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.cc b/webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.cc index 0dc9bb4d1c..5a0090ab23 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.cc +++ b/webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.cc @@ -12,11 +12,11 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" -#include "webrtc/base/string_to_number.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/ilbc/ilbc.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" +#include "webrtc/rtc_base/string_to_number.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.h b/webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.h index 0d9b366747..c83be61fe9 100644 --- a/webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.h +++ b/webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.h @@ -14,8 +14,8 @@ #include "webrtc/api/audio_codecs/audio_encoder.h" #include "webrtc/api/audio_codecs/audio_format.h" #include "webrtc/api/audio_codecs/ilbc/audio_encoder_ilbc_config.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/codecs/ilbc/ilbc.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/isac/audio_decoder_isac_t.h b/webrtc/modules/audio_coding/codecs/isac/audio_decoder_isac_t.h index 1017cbc9d3..387b34b5da 100644 --- a/webrtc/modules/audio_coding/codecs/isac/audio_decoder_isac_t.h +++ b/webrtc/modules/audio_coding/codecs/isac/audio_decoder_isac_t.h @@ -14,10 +14,10 @@ #include #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/audio_coding/codecs/isac/locked_bandwidth_info.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/isac/audio_decoder_isac_t_impl.h b/webrtc/modules/audio_coding/codecs/isac/audio_decoder_isac_t_impl.h index e19f882006..1abfe37fa7 100644 --- a/webrtc/modules/audio_coding/codecs/isac/audio_decoder_isac_t_impl.h +++ b/webrtc/modules/audio_coding/codecs/isac/audio_decoder_isac_t_impl.h @@ -13,7 +13,7 @@ #include "webrtc/modules/audio_coding/codecs/isac/main/include/audio_decoder_isac.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t.h b/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t.h index bef25d5a41..2cc23db9fe 100644 --- a/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t.h +++ b/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t.h @@ -15,9 +15,9 @@ #include "webrtc/api/audio_codecs/audio_encoder.h" #include "webrtc/api/audio_codecs/audio_format.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/audio_coding/codecs/isac/locked_bandwidth_info.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h b/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h index ebe4d6a0e2..bda379c8d2 100644 --- a/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h +++ b/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h @@ -11,9 +11,9 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_AUDIO_ENCODER_ISAC_T_IMPL_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_AUDIO_ENCODER_ISAC_T_IMPL_H_ -#include "webrtc/base/checks.h" -#include "webrtc/base/string_to_number.h" #include "webrtc/common_types.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/string_to_number.h" namespace webrtc { namespace { // NOLINT (not a "regular" header file) diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/isac_fix_type.h b/webrtc/modules/audio_coding/codecs/isac/fix/source/isac_fix_type.h index d6385314a1..a39444e418 100644 --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/isac_fix_type.h +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/isac_fix_type.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_ISAC_FIX_TYPE_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_FIX_SOURCE_ISAC_FIX_TYPE_H_ -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/codecs/isac/fix/include/isacfix.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/isac/locked_bandwidth_info.h b/webrtc/modules/audio_coding/codecs/isac/locked_bandwidth_info.h index 1ab5ae9d63..65bea4c924 100644 --- a/webrtc/modules/audio_coding/codecs/isac/locked_bandwidth_info.h +++ b/webrtc/modules/audio_coding/codecs/isac/locked_bandwidth_info.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_LOCKED_BANDWIDTH_INFO_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_LOCKED_BANDWIDTH_INFO_H_ -#include "webrtc/base/atomicops.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/audio_coding/codecs/isac/bandwidth_info.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ReleaseTest-API.cc b/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ReleaseTest-API.cc index 33518a718e..9c11d23bca 100644 --- a/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ReleaseTest-API.cc +++ b/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ReleaseTest-API.cc @@ -21,7 +21,7 @@ /* include API */ #include "isac.h" #include "utility.h" -#include "webrtc/base/format_macros.h" +#include "webrtc/rtc_base/format_macros.h" /* Defines */ #define SEED_FILE "randseed.txt" /* Used when running decoder on garbage data */ diff --git a/webrtc/modules/audio_coding/codecs/isac/unittest.cc b/webrtc/modules/audio_coding/codecs/isac/unittest.cc index d68c24d1e6..1f4ae804a1 100644 --- a/webrtc/modules/audio_coding/codecs/isac/unittest.cc +++ b/webrtc/modules/audio_coding/codecs/isac/unittest.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/buffer.h" #include "webrtc/modules/audio_coding/codecs/isac/fix/include/audio_encoder_isacfix.h" #include "webrtc/modules/audio_coding/codecs/isac/main/include/audio_encoder_isac.h" #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" +#include "webrtc/rtc_base/buffer.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h b/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h index 46b91ce8e3..65f46544e8 100644 --- a/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h +++ b/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h @@ -14,7 +14,7 @@ #include #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/array_view.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.cc b/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.cc index 28a7b1090a..2270ff4d9d 100644 --- a/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.cc +++ b/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.h b/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.h index dcdaf9281e..d8512ec53c 100644 --- a/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.h +++ b/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.h @@ -12,8 +12,8 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_OPUS_AUDIO_DECODER_OPUS_H_ #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/codecs/opus/opus_interface.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc b/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc index 9ebb63d849..9b3a367c0f 100644 --- a/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc +++ b/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc @@ -14,20 +14,20 @@ #include #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/numerics/exp_filter.h" -#include "webrtc/base/protobuf_utils.h" -#include "webrtc/base/ptr_util.h" -#include "webrtc/base/safe_conversions.h" -#include "webrtc/base/safe_minmax.h" -#include "webrtc/base/string_to_number.h" -#include "webrtc/base/timeutils.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor_impl.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/controller_manager.h" #include "webrtc/modules/audio_coding/codecs/opus/opus_interface.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/numerics/exp_filter.h" +#include "webrtc/rtc_base/protobuf_utils.h" +#include "webrtc/rtc_base/ptr_util.h" +#include "webrtc/rtc_base/safe_conversions.h" +#include "webrtc/rtc_base/safe_minmax.h" +#include "webrtc/rtc_base/string_to_number.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/field_trial.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h b/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h index e50441b4c2..473a65d29d 100644 --- a/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h +++ b/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h @@ -19,12 +19,12 @@ #include "webrtc/api/audio_codecs/audio_encoder.h" #include "webrtc/api/audio_codecs/audio_format.h" #include "webrtc/api/audio_codecs/opus/audio_encoder_opus_config.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/protobuf_utils.h" #include "webrtc/common_audio/smoothing_filter.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h" #include "webrtc/modules/audio_coding/codecs/opus/opus_interface.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/protobuf_utils.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus_unittest.cc b/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus_unittest.cc index ecaea5dbdb..08e168b099 100644 --- a/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus_unittest.cc +++ b/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus_unittest.cc @@ -12,13 +12,13 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/fakeclock.h" #include "webrtc/common_audio/mocks/mock_smoothing_filter.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_audio_network_adaptor.h" #include "webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h" #include "webrtc/modules/audio_coding/neteq/tools/audio_loop.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/fakeclock.h" #include "webrtc/test/field_trial.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_coding/codecs/opus/opus_complexity_unittest.cc b/webrtc/modules/audio_coding/codecs/opus/opus_complexity_unittest.cc index 8b8f9a1ec0..28d5175e96 100644 --- a/webrtc/modules/audio_coding/codecs/opus/opus_complexity_unittest.cc +++ b/webrtc/modules/audio_coding/codecs/opus/opus_complexity_unittest.cc @@ -8,10 +8,10 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/format_macros.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.h" #include "webrtc/modules/audio_coding/neteq/tools/audio_loop.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" #include "webrtc/test/testsupport/perf_test.h" diff --git a/webrtc/modules/audio_coding/codecs/opus/opus_fec_test.cc b/webrtc/modules/audio_coding/codecs/opus/opus_fec_test.cc index 8748162eb1..8f42bf4ea7 100644 --- a/webrtc/modules/audio_coding/codecs/opus/opus_fec_test.cc +++ b/webrtc/modules/audio_coding/codecs/opus/opus_fec_test.cc @@ -10,8 +10,8 @@ #include -#include "webrtc/base/format_macros.h" #include "webrtc/modules/audio_coding/codecs/opus/opus_interface.h" +#include "webrtc/rtc_base/format_macros.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_coding/codecs/opus/opus_inst.h b/webrtc/modules/audio_coding/codecs/opus/opus_inst.h index b2be12aee7..976f09ea71 100644 --- a/webrtc/modules/audio_coding/codecs/opus/opus_inst.h +++ b/webrtc/modules/audio_coding/codecs/opus/opus_inst.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/ignore_wundef.h" +#include "webrtc/rtc_base/ignore_wundef.h" RTC_PUSH_IGNORING_WUNDEF() #include "opus.h" diff --git a/webrtc/modules/audio_coding/codecs/opus/opus_unittest.cc b/webrtc/modules/audio_coding/codecs/opus/opus_unittest.cc index c2614abd6e..9cff920ce7 100644 --- a/webrtc/modules/audio_coding/codecs/opus/opus_unittest.cc +++ b/webrtc/modules/audio_coding/codecs/opus/opus_unittest.cc @@ -11,10 +11,10 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/codecs/opus/opus_inst.h" #include "webrtc/modules/audio_coding/codecs/opus/opus_interface.h" #include "webrtc/modules/audio_coding/neteq/tools/audio_loop.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.cc b/webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.cc index 692e212ed9..57724a34bc 100644 --- a/webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.cc +++ b/webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h" #include "webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.h b/webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.h index 969aa4e6d9..46dfbb266f 100644 --- a/webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.h +++ b/webrtc/modules/audio_coding/codecs/pcm16b/audio_decoder_pcm16b.h @@ -12,7 +12,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_PCM16B_AUDIO_DECODER_PCM16B_H_ #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.cc b/webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.cc index f57cc7ebdc..897eed23f4 100644 --- a/webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.cc +++ b/webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.cc @@ -12,11 +12,11 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" -#include "webrtc/base/string_to_number.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" +#include "webrtc/rtc_base/string_to_number.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.h b/webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.h index deb0e1e80f..79f56c9788 100644 --- a/webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.h +++ b/webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_PCM16B_AUDIO_ENCODER_PCM16B_H_ #define WEBRTC_MODULES_AUDIO_CODING_CODECS_PCM16B_AUDIO_ENCODER_PCM16B_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.cc b/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.cc index 251a1045dc..0ce7d345ec 100644 --- a/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.cc +++ b/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.cc @@ -14,7 +14,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.h b/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.h index 4731ddf029..4261c472d1 100644 --- a/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.h +++ b/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.h @@ -15,8 +15,8 @@ #include #include "webrtc/api/audio_codecs/audio_encoder.h" -#include "webrtc/base/buffer.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red_unittest.cc b/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red_unittest.cc index c82569e1d6..a79bb1c638 100644 --- a/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red_unittest.cc +++ b/webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red_unittest.cc @@ -11,8 +11,8 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/codecs/red/audio_encoder_copy_red.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/gtest.h" #include "webrtc/test/mock_audio_encoder.h" diff --git a/webrtc/modules/audio_coding/codecs/tools/audio_codec_speed_test.cc b/webrtc/modules/audio_coding/codecs/tools/audio_codec_speed_test.cc index 5b0f02ef66..b9332e0b04 100644 --- a/webrtc/modules/audio_coding/codecs/tools/audio_codec_speed_test.cc +++ b/webrtc/modules/audio_coding/codecs/tools/audio_codec_speed_test.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/audio_coding/codecs/tools/audio_codec_speed_test.h" -#include "webrtc/base/format_macros.h" +#include "webrtc/rtc_base/format_macros.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_coding/include/audio_coding_module.h b/webrtc/modules/audio_coding/include/audio_coding_module.h index 9d13f8d1d0..44eec75666 100644 --- a/webrtc/modules/audio_coding/include/audio_coding_module.h +++ b/webrtc/modules/audio_coding/include/audio_coding_module.h @@ -17,13 +17,13 @@ #include "webrtc/api/audio_codecs/audio_decoder_factory.h" #include "webrtc/api/audio_codecs/audio_encoder.h" -#include "webrtc/base/deprecation.h" -#include "webrtc/base/function_view.h" -#include "webrtc/base/optional.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" #include "webrtc/modules/audio_coding/neteq/include/neteq.h" #include "webrtc/modules/include/module.h" +#include "webrtc/rtc_base/deprecation.h" +#include "webrtc/rtc_base/function_view.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_coding/neteq/accelerate.h b/webrtc/modules/audio_coding/neteq/accelerate.h index f66bc8ed34..713344e3d0 100644 --- a/webrtc/modules/audio_coding/neteq/accelerate.h +++ b/webrtc/modules/audio_coding/neteq/accelerate.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" #include "webrtc/modules/audio_coding/neteq/time_stretch.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/audio_decoder_impl.cc b/webrtc/modules/audio_coding/neteq/audio_decoder_impl.cc index 4087973adb..d60f4bf7d1 100644 --- a/webrtc/modules/audio_coding/neteq/audio_decoder_impl.cc +++ b/webrtc/modules/audio_coding/neteq/audio_decoder_impl.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h" +#include "webrtc/rtc_base/checks.h" #ifdef WEBRTC_CODEC_G722 #include "webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h" #endif diff --git a/webrtc/modules/audio_coding/neteq/audio_decoder_impl.h b/webrtc/modules/audio_coding/neteq/audio_decoder_impl.h index 325674f3e9..8dc746c856 100644 --- a/webrtc/modules/audio_coding/neteq/audio_decoder_impl.h +++ b/webrtc/modules/audio_coding/neteq/audio_decoder_impl.h @@ -14,8 +14,8 @@ #include #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/neteq_decoder_enum.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" #ifdef WEBRTC_CODEC_G722 diff --git a/webrtc/modules/audio_coding/neteq/audio_multi_vector.cc b/webrtc/modules/audio_coding/neteq/audio_multi_vector.cc index c80909d7b5..8263752593 100644 --- a/webrtc/modules/audio_coding/neteq/audio_multi_vector.cc +++ b/webrtc/modules/audio_coding/neteq/audio_multi_vector.cc @@ -14,7 +14,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/audio_multi_vector.h b/webrtc/modules/audio_coding/neteq/audio_multi_vector.h index 1c28648816..b6f1d393a4 100644 --- a/webrtc/modules/audio_coding/neteq/audio_multi_vector.h +++ b/webrtc/modules/audio_coding/neteq/audio_multi_vector.h @@ -15,8 +15,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_vector.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/audio_vector.cc b/webrtc/modules/audio_coding/neteq/audio_vector.cc index 5cc1a44966..c819daacaa 100644 --- a/webrtc/modules/audio_coding/neteq/audio_vector.cc +++ b/webrtc/modules/audio_coding/neteq/audio_vector.cc @@ -15,7 +15,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/audio_vector.h b/webrtc/modules/audio_coding/neteq/audio_vector.h index 57e01ab2e1..f3dfdd613e 100644 --- a/webrtc/modules/audio_coding/neteq/audio_vector.h +++ b/webrtc/modules/audio_coding/neteq/audio_vector.h @@ -14,8 +14,8 @@ #include // Access to size_t. #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/background_noise.h b/webrtc/modules/audio_coding/neteq/background_noise.h index 2e5466796e..0c662bd384 100644 --- a/webrtc/modules/audio_coding/neteq/background_noise.h +++ b/webrtc/modules/audio_coding/neteq/background_noise.h @@ -14,9 +14,9 @@ #include // size_t #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" #include "webrtc/modules/audio_coding/neteq/include/neteq.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/buffer_level_filter.h b/webrtc/modules/audio_coding/neteq/buffer_level_filter.h index 030870653c..bc9a10e25c 100644 --- a/webrtc/modules/audio_coding/neteq/buffer_level_filter.h +++ b/webrtc/modules/audio_coding/neteq/buffer_level_filter.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/comfort_noise.cc b/webrtc/modules/audio_coding/neteq/comfort_noise.cc index ef3129b76a..8482e8dd12 100644 --- a/webrtc/modules/audio_coding/neteq/comfort_noise.cc +++ b/webrtc/modules/audio_coding/neteq/comfort_noise.cc @@ -13,10 +13,10 @@ #include #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_coding/neteq/decoder_database.h" #include "webrtc/modules/audio_coding/neteq/dsp_helper.h" #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/comfort_noise.h b/webrtc/modules/audio_coding/neteq/comfort_noise.h index 7476784791..fe663cc7b4 100644 --- a/webrtc/modules/audio_coding/neteq/comfort_noise.h +++ b/webrtc/modules/audio_coding/neteq/comfort_noise.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_COMFORT_NOISE_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_COMFORT_NOISE_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/decision_logic.h b/webrtc/modules/audio_coding/neteq/decision_logic.h index 66c940d7a6..7d9ba60fc2 100644 --- a/webrtc/modules/audio_coding/neteq/decision_logic.h +++ b/webrtc/modules/audio_coding/neteq/decision_logic.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_DECISION_LOGIC_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_DECISION_LOGIC_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/defines.h" #include "webrtc/modules/audio_coding/neteq/include/neteq.h" #include "webrtc/modules/audio_coding/neteq/tick_timer.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/decision_logic_fax.h b/webrtc/modules/audio_coding/neteq/decision_logic_fax.h index 6726126537..4efb874775 100644 --- a/webrtc/modules/audio_coding/neteq/decision_logic_fax.h +++ b/webrtc/modules/audio_coding/neteq/decision_logic_fax.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_DECISION_LOGIC_FAX_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_DECISION_LOGIC_FAX_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/decision_logic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/decision_logic_normal.h b/webrtc/modules/audio_coding/neteq/decision_logic_normal.h index 06058674e9..b676bd4deb 100644 --- a/webrtc/modules/audio_coding/neteq/decision_logic_normal.h +++ b/webrtc/modules/audio_coding/neteq/decision_logic_normal.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_DECISION_LOGIC_NORMAL_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_DECISION_LOGIC_NORMAL_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/decision_logic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/decoder_database.cc b/webrtc/modules/audio_coding/neteq/decoder_database.cc index 8cd438656a..526d159c86 100644 --- a/webrtc/modules/audio_coding/neteq/decoder_database.cc +++ b/webrtc/modules/audio_coding/neteq/decoder_database.cc @@ -13,8 +13,8 @@ #include // pair #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/decoder_database.h b/webrtc/modules/audio_coding/neteq/decoder_database.h index 35d1d0da08..5feadd1bf1 100644 --- a/webrtc/modules/audio_coding/neteq/decoder_database.h +++ b/webrtc/modules/audio_coding/neteq/decoder_database.h @@ -17,12 +17,12 @@ #include "webrtc/api/audio_codecs/audio_decoder_factory.h" #include "webrtc/api/audio_codecs/audio_format.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/common_types.h" // NULL #include "webrtc/modules/audio_coding/codecs/cng/webrtc_cng.h" #include "webrtc/modules/audio_coding/neteq/audio_decoder_impl.h" #include "webrtc/modules/audio_coding/neteq/packet.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/delay_manager.cc b/webrtc/modules/audio_coding/neteq/delay_manager.cc index 2941126c02..bf92588656 100644 --- a/webrtc/modules/audio_coding/neteq/delay_manager.cc +++ b/webrtc/modules/audio_coding/neteq/delay_manager.cc @@ -15,11 +15,11 @@ #include // max, min -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_coding/neteq/delay_peak_detector.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_conversions.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/delay_manager.h b/webrtc/modules/audio_coding/neteq/delay_manager.h index f91c1dec33..ac1de25c2f 100644 --- a/webrtc/modules/audio_coding/neteq/delay_manager.h +++ b/webrtc/modules/audio_coding/neteq/delay_manager.h @@ -16,9 +16,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_decoder_impl.h" #include "webrtc/modules/audio_coding/neteq/tick_timer.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/delay_peak_detector.cc b/webrtc/modules/audio_coding/neteq/delay_peak_detector.cc index 5763572bad..b3fe8a746a 100644 --- a/webrtc/modules/audio_coding/neteq/delay_peak_detector.cc +++ b/webrtc/modules/audio_coding/neteq/delay_peak_detector.cc @@ -12,8 +12,8 @@ #include // max -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/delay_peak_detector.h b/webrtc/modules/audio_coding/neteq/delay_peak_detector.h index f57d3bd71e..455d4e95a0 100644 --- a/webrtc/modules/audio_coding/neteq/delay_peak_detector.h +++ b/webrtc/modules/audio_coding/neteq/delay_peak_detector.h @@ -16,8 +16,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/tick_timer.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/dsp_helper.h b/webrtc/modules/audio_coding/neteq/dsp_helper.h index 23543fe383..599110aa49 100644 --- a/webrtc/modules/audio_coding/neteq/dsp_helper.h +++ b/webrtc/modules/audio_coding/neteq/dsp_helper.h @@ -13,8 +13,8 @@ #include // Access to size_t. -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/dtmf_buffer.cc b/webrtc/modules/audio_coding/neteq/dtmf_buffer.cc index 3685fc1ef4..c5e5adf1a7 100644 --- a/webrtc/modules/audio_coding/neteq/dtmf_buffer.cc +++ b/webrtc/modules/audio_coding/neteq/dtmf_buffer.cc @@ -13,8 +13,8 @@ #include #include // max -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" // Modify the code to obtain backwards bit-exactness. Once bit-exactness is no // longer required, this #define should be removed (and the code that it diff --git a/webrtc/modules/audio_coding/neteq/dtmf_buffer.h b/webrtc/modules/audio_coding/neteq/dtmf_buffer.h index 1f415ce81f..068ad64d84 100644 --- a/webrtc/modules/audio_coding/neteq/dtmf_buffer.h +++ b/webrtc/modules/audio_coding/neteq/dtmf_buffer.h @@ -14,7 +14,7 @@ #include #include // size_t -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.cc b/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.cc index 2079d2ebeb..416835b189 100644 --- a/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.cc +++ b/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.cc @@ -30,8 +30,8 @@ #include "webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h" -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h b/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h index 9abd03eb09..713987d7e7 100644 --- a/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h +++ b/webrtc/modules/audio_coding/neteq/dtmf_tone_generator.h @@ -11,9 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_DTMF_TONE_GENERATOR_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_DTMF_TONE_GENERATOR_H_ - -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/expand.cc b/webrtc/modules/audio_coding/neteq/expand.cc index 0c527fe041..f8ae526b3c 100644 --- a/webrtc/modules/audio_coding/neteq/expand.cc +++ b/webrtc/modules/audio_coding/neteq/expand.cc @@ -16,7 +16,6 @@ #include // min, max #include // numeric_limits -#include "webrtc/base/safe_conversions.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_coding/neteq/background_noise.h" #include "webrtc/modules/audio_coding/neteq/cross_correlation.h" @@ -24,6 +23,7 @@ #include "webrtc/modules/audio_coding/neteq/random_vector.h" #include "webrtc/modules/audio_coding/neteq/statistics_calculator.h" #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" +#include "webrtc/rtc_base/safe_conversions.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/expand.h b/webrtc/modules/audio_coding/neteq/expand.h index 0feba3693a..af1543283b 100644 --- a/webrtc/modules/audio_coding/neteq/expand.h +++ b/webrtc/modules/audio_coding/neteq/expand.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/expand_unittest.cc b/webrtc/modules/audio_coding/neteq/expand_unittest.cc index 55b048f0c5..40cb2eb321 100644 --- a/webrtc/modules/audio_coding/neteq/expand_unittest.cc +++ b/webrtc/modules/audio_coding/neteq/expand_unittest.cc @@ -12,13 +12,13 @@ #include "webrtc/modules/audio_coding/neteq/expand.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_coding/neteq/background_noise.h" #include "webrtc/modules/audio_coding/neteq/random_vector.h" #include "webrtc/modules/audio_coding/neteq/statistics_calculator.h" #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" #include "webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_coding/neteq/include/neteq.h b/webrtc/modules/audio_coding/neteq/include/neteq.h index 648c04f8f5..61bdd1f953 100644 --- a/webrtc/modules/audio_coding/neteq/include/neteq.h +++ b/webrtc/modules/audio_coding/neteq/include/neteq.h @@ -16,11 +16,11 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/neteq/audio_decoder_impl.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/merge.cc b/webrtc/modules/audio_coding/neteq/merge.cc index 9efbe4fb9c..df4f792c4a 100644 --- a/webrtc/modules/audio_coding/neteq/merge.cc +++ b/webrtc/modules/audio_coding/neteq/merge.cc @@ -16,14 +16,14 @@ #include // min, max #include -#include "webrtc/base/safe_conversions.h" -#include "webrtc/base/safe_minmax.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" #include "webrtc/modules/audio_coding/neteq/cross_correlation.h" #include "webrtc/modules/audio_coding/neteq/dsp_helper.h" #include "webrtc/modules/audio_coding/neteq/expand.h" #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" +#include "webrtc/rtc_base/safe_conversions.h" +#include "webrtc/rtc_base/safe_minmax.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/merge.h b/webrtc/modules/audio_coding/neteq/merge.h index 48f09a1672..34e6639ff8 100644 --- a/webrtc/modules/audio_coding/neteq/merge.h +++ b/webrtc/modules/audio_coding/neteq/merge.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/mock/mock_external_decoder_pcm16b.h b/webrtc/modules/audio_coding/neteq/mock/mock_external_decoder_pcm16b.h index a8919f25dc..38486801d7 100644 --- a/webrtc/modules/audio_coding/neteq/mock/mock_external_decoder_pcm16b.h +++ b/webrtc/modules/audio_coding/neteq/mock/mock_external_decoder_pcm16b.h @@ -12,8 +12,8 @@ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_EXTERNAL_DECODER_PCM16B_H_ #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/test/gmock.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_coding/neteq/nack_tracker.cc b/webrtc/modules/audio_coding/neteq/nack_tracker.cc index af3476c958..9829cf93c7 100644 --- a/webrtc/modules/audio_coding/neteq/nack_tracker.cc +++ b/webrtc/modules/audio_coding/neteq/nack_tracker.cc @@ -14,8 +14,8 @@ #include // For std::max. -#include "webrtc/base/checks.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_coding/neteq/nack_tracker.h b/webrtc/modules/audio_coding/neteq/nack_tracker.h index de97d91cf2..4f98c82c9c 100644 --- a/webrtc/modules/audio_coding/neteq/nack_tracker.h +++ b/webrtc/modules/audio_coding/neteq/nack_tracker.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/gtest_prod_util.h" #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" +#include "webrtc/rtc_base/gtest_prod_util.h" // // The NackTracker class keeps track of the lost packets, an estimate of diff --git a/webrtc/modules/audio_coding/neteq/neteq_decoder_enum.h b/webrtc/modules/audio_coding/neteq/neteq_decoder_enum.h index 6eb9300822..a36034ccdf 100644 --- a/webrtc/modules/audio_coding/neteq/neteq_decoder_enum.h +++ b/webrtc/modules/audio_coding/neteq/neteq_decoder_enum.h @@ -12,7 +12,7 @@ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_NETEQ_DECODER_ENUM_H_ #include "webrtc/api/audio_codecs/audio_format.h" -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/neteq_impl.cc b/webrtc/modules/audio_coding/neteq/neteq_impl.cc index fb3cc11ec8..47ff47be35 100644 --- a/webrtc/modules/audio_coding/neteq/neteq_impl.cc +++ b/webrtc/modules/audio_coding/neteq/neteq_impl.cc @@ -17,11 +17,6 @@ #include #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_conversions.h" -#include "webrtc/base/sanitizer.h" -#include "webrtc/base/trace_event.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_coding/neteq/accelerate.h" #include "webrtc/modules/audio_coding/neteq/background_noise.h" @@ -47,6 +42,11 @@ #include "webrtc/modules/audio_coding/neteq/tick_timer.h" #include "webrtc/modules/audio_coding/neteq/timestamp_scaler.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_conversions.h" +#include "webrtc/rtc_base/sanitizer.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/neteq_impl.h b/webrtc/modules/audio_coding/neteq/neteq_impl.h index d1d2039be7..0eeff2e45f 100644 --- a/webrtc/modules/audio_coding/neteq/neteq_impl.h +++ b/webrtc/modules/audio_coding/neteq/neteq_impl.h @@ -14,10 +14,6 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" #include "webrtc/modules/audio_coding/neteq/defines.h" #include "webrtc/modules/audio_coding/neteq/include/neteq.h" @@ -27,6 +23,10 @@ #include "webrtc/modules/audio_coding/neteq/statistics_calculator.h" #include "webrtc/modules/audio_coding/neteq/tick_timer.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/neteq_impl_unittest.cc b/webrtc/modules/audio_coding/neteq/neteq_impl_unittest.cc index 0676ad6803..9d9be30b9a 100644 --- a/webrtc/modules/audio_coding/neteq/neteq_impl_unittest.cc +++ b/webrtc/modules/audio_coding/neteq/neteq_impl_unittest.cc @@ -11,7 +11,6 @@ #include #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/neteq/accelerate.h" #include "webrtc/modules/audio_coding/neteq/expand.h" @@ -29,6 +28,7 @@ #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" #include "webrtc/modules/audio_coding/neteq/timestamp_scaler.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" #include "webrtc/test/mock_audio_decoder.h" diff --git a/webrtc/modules/audio_coding/neteq/neteq_unittest.cc b/webrtc/modules/audio_coding/neteq/neteq_unittest.cc index eed77405f8..ef54b9d538 100644 --- a/webrtc/modules/audio_coding/neteq/neteq_unittest.cc +++ b/webrtc/modules/audio_coding/neteq/neteq_unittest.cc @@ -22,15 +22,15 @@ #include "gflags/gflags.h" #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/protobuf_utils.h" -#include "webrtc/base/sha1digest.h" -#include "webrtc/base/stringencode.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.h" #include "webrtc/modules/audio_coding/neteq/tools/audio_loop.h" #include "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/protobuf_utils.h" +#include "webrtc/rtc_base/sha1digest.h" +#include "webrtc/rtc_base/stringencode.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_coding/neteq/normal.cc b/webrtc/modules/audio_coding/neteq/normal.cc index 7442df1384..551fd9bbe7 100644 --- a/webrtc/modules/audio_coding/neteq/normal.cc +++ b/webrtc/modules/audio_coding/neteq/normal.cc @@ -15,12 +15,12 @@ #include // min #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/checks.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" #include "webrtc/modules/audio_coding/neteq/background_noise.h" #include "webrtc/modules/audio_coding/neteq/decoder_database.h" #include "webrtc/modules/audio_coding/neteq/expand.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/normal.h b/webrtc/modules/audio_coding/neteq/normal.h index 019bcf8b14..c764155eff 100644 --- a/webrtc/modules/audio_coding/neteq/normal.h +++ b/webrtc/modules/audio_coding/neteq/normal.h @@ -15,11 +15,11 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" #include "webrtc/modules/audio_coding/neteq/defines.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/packet.h b/webrtc/modules/audio_coding/neteq/packet.h index 7d91f25796..52a9a13401 100644 --- a/webrtc/modules/audio_coding/neteq/packet.h +++ b/webrtc/modules/audio_coding/neteq/packet.h @@ -15,8 +15,8 @@ #include #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/buffer.h" #include "webrtc/modules/audio_coding/neteq/tick_timer.h" +#include "webrtc/rtc_base/buffer.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/packet_buffer.cc b/webrtc/modules/audio_coding/neteq/packet_buffer.cc index 78a71c746d..b495e3cf77 100644 --- a/webrtc/modules/audio_coding/neteq/packet_buffer.cc +++ b/webrtc/modules/audio_coding/neteq/packet_buffer.cc @@ -17,9 +17,9 @@ #include // find_if() #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_coding/neteq/decoder_database.h" #include "webrtc/modules/audio_coding/neteq/tick_timer.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_coding/neteq/packet_buffer.h b/webrtc/modules/audio_coding/neteq/packet_buffer.h index a26d6c5c67..3dbc73a637 100644 --- a/webrtc/modules/audio_coding/neteq/packet_buffer.h +++ b/webrtc/modules/audio_coding/neteq/packet_buffer.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_PACKET_BUFFER_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_PACKET_BUFFER_H_ -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_coding/neteq/packet.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/post_decode_vad.h b/webrtc/modules/audio_coding/neteq/post_decode_vad.h index dd648185de..a98992f939 100644 --- a/webrtc/modules/audio_coding/neteq/post_decode_vad.h +++ b/webrtc/modules/audio_coding/neteq/post_decode_vad.h @@ -14,11 +14,11 @@ #include // size_t #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/vad/include/webrtc_vad.h" #include "webrtc/common_types.h" // NULL #include "webrtc/modules/audio_coding/neteq/defines.h" #include "webrtc/modules/audio_coding/neteq/packet.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/preemptive_expand.h b/webrtc/modules/audio_coding/neteq/preemptive_expand.h index c4c236080c..1275a37f08 100644 --- a/webrtc/modules/audio_coding/neteq/preemptive_expand.h +++ b/webrtc/modules/audio_coding/neteq/preemptive_expand.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" #include "webrtc/modules/audio_coding/neteq/time_stretch.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/random_vector.h b/webrtc/modules/audio_coding/neteq/random_vector.h index 61651e57c2..394e940d3d 100644 --- a/webrtc/modules/audio_coding/neteq/random_vector.h +++ b/webrtc/modules/audio_coding/neteq/random_vector.h @@ -13,7 +13,7 @@ #include // size_t -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/red_payload_splitter.cc b/webrtc/modules/audio_coding/neteq/red_payload_splitter.cc index c14986dc39..daf24e7455 100644 --- a/webrtc/modules/audio_coding/neteq/red_payload_splitter.cc +++ b/webrtc/modules/audio_coding/neteq/red_payload_splitter.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/audio_coding/neteq/decoder_database.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_conversions.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/red_payload_splitter.h b/webrtc/modules/audio_coding/neteq/red_payload_splitter.h index deb86eb166..8134bfc508 100644 --- a/webrtc/modules/audio_coding/neteq/red_payload_splitter.h +++ b/webrtc/modules/audio_coding/neteq/red_payload_splitter.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_RED_PAYLOAD_SPLITTER_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_RED_PAYLOAD_SPLITTER_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/packet.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/rtcp.h b/webrtc/modules/audio_coding/neteq/rtcp.h index d222cea7bc..ae0ed8d785 100644 --- a/webrtc/modules/audio_coding/neteq/rtcp.h +++ b/webrtc/modules/audio_coding/neteq/rtcp.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_RTCP_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_RTCP_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/include/neteq.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/statistics_calculator.cc b/webrtc/modules/audio_coding/neteq/statistics_calculator.cc index c6d274f432..145d99ab89 100644 --- a/webrtc/modules/audio_coding/neteq/statistics_calculator.cc +++ b/webrtc/modules/audio_coding/neteq/statistics_calculator.cc @@ -14,10 +14,10 @@ #include // memset #include -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/audio_coding/neteq/decision_logic.h" #include "webrtc/modules/audio_coding/neteq/delay_manager.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/statistics_calculator.h b/webrtc/modules/audio_coding/neteq/statistics_calculator.h index fb869ab025..da3a7dcb1a 100644 --- a/webrtc/modules/audio_coding/neteq/statistics_calculator.h +++ b/webrtc/modules/audio_coding/neteq/statistics_calculator.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/include/neteq.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/sync_buffer.cc b/webrtc/modules/audio_coding/neteq/sync_buffer.cc index 9285bbc093..29630b631f 100644 --- a/webrtc/modules/audio_coding/neteq/sync_buffer.cc +++ b/webrtc/modules/audio_coding/neteq/sync_buffer.cc @@ -10,8 +10,8 @@ #include // Access to min. -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/sync_buffer.h b/webrtc/modules/audio_coding/neteq/sync_buffer.h index eb90034eb1..a3a78f5ca5 100644 --- a/webrtc/modules/audio_coding/neteq/sync_buffer.h +++ b/webrtc/modules/audio_coding/neteq/sync_buffer.h @@ -11,9 +11,9 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_SYNC_BUFFER_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_SYNC_BUFFER_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/test/RTPencode.cc b/webrtc/modules/audio_coding/neteq/test/RTPencode.cc index 8e8de11ab0..8ad50903f5 100644 --- a/webrtc/modules/audio_coding/neteq/test/RTPencode.cc +++ b/webrtc/modules/audio_coding/neteq/test/RTPencode.cc @@ -25,7 +25,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/typedefs.h" // needed for NetEqDecoder diff --git a/webrtc/modules/audio_coding/neteq/test/neteq_ilbc_quality_test.cc b/webrtc/modules/audio_coding/neteq/test/neteq_ilbc_quality_test.cc index b3524a3a6d..4e5f1592cb 100644 --- a/webrtc/modules/audio_coding/neteq/test/neteq_ilbc_quality_test.cc +++ b/webrtc/modules/audio_coding/neteq/test/neteq_ilbc_quality_test.cc @@ -10,10 +10,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.h" #include "webrtc/modules/audio_coding/neteq/tools/neteq_quality_test.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/test/testsupport/fileutils.h" using google::RegisterFlagValidator; diff --git a/webrtc/modules/audio_coding/neteq/test/neteq_pcmu_quality_test.cc b/webrtc/modules/audio_coding/neteq/test/neteq_pcmu_quality_test.cc index 27350abaa3..eb75fda029 100644 --- a/webrtc/modules/audio_coding/neteq/test/neteq_pcmu_quality_test.cc +++ b/webrtc/modules/audio_coding/neteq/test/neteq_pcmu_quality_test.cc @@ -10,10 +10,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h" #include "webrtc/modules/audio_coding/neteq/tools/neteq_quality_test.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/test/testsupport/fileutils.h" using google::RegisterFlagValidator; diff --git a/webrtc/modules/audio_coding/neteq/tick_timer.h b/webrtc/modules/audio_coding/neteq/tick_timer.h index 8f17f43596..55e9eab361 100644 --- a/webrtc/modules/audio_coding/neteq/tick_timer.h +++ b/webrtc/modules/audio_coding/neteq/tick_timer.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/time_stretch.cc b/webrtc/modules/audio_coding/neteq/time_stretch.cc index 0b3bad9e91..630051b122 100644 --- a/webrtc/modules/audio_coding/neteq/time_stretch.cc +++ b/webrtc/modules/audio_coding/neteq/time_stretch.cc @@ -13,11 +13,11 @@ #include // min, max #include -#include "webrtc/base/safe_conversions.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_coding/neteq/background_noise.h" #include "webrtc/modules/audio_coding/neteq/cross_correlation.h" #include "webrtc/modules/audio_coding/neteq/dsp_helper.h" +#include "webrtc/rtc_base/safe_conversions.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/time_stretch.h b/webrtc/modules/audio_coding/neteq/time_stretch.h index 00a141508b..ff056e61d4 100644 --- a/webrtc/modules/audio_coding/neteq/time_stretch.h +++ b/webrtc/modules/audio_coding/neteq/time_stretch.h @@ -14,8 +14,8 @@ #include #include // memset, size_t -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/audio_multi_vector.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/time_stretch_unittest.cc b/webrtc/modules/audio_coding/neteq/time_stretch_unittest.cc index 8299924adf..f549b27c28 100644 --- a/webrtc/modules/audio_coding/neteq/time_stretch_unittest.cc +++ b/webrtc/modules/audio_coding/neteq/time_stretch_unittest.cc @@ -16,10 +16,10 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_coding/neteq/background_noise.h" #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_coding/neteq/timestamp_scaler.h b/webrtc/modules/audio_coding/neteq/timestamp_scaler.h index 9129d843bf..bfb8d9c25e 100644 --- a/webrtc/modules/audio_coding/neteq/timestamp_scaler.h +++ b/webrtc/modules/audio_coding/neteq/timestamp_scaler.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_TIMESTAMP_SCALER_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_TIMESTAMP_SCALER_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/packet.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/audio_checksum.h b/webrtc/modules/audio_coding/neteq/tools/audio_checksum.h index a302cff908..48fde65c45 100644 --- a/webrtc/modules/audio_coding/neteq/tools/audio_checksum.h +++ b/webrtc/modules/audio_coding/neteq/tools/audio_checksum.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/md5digest.h" -#include "webrtc/base/stringencode.h" #include "webrtc/modules/audio_coding/neteq/tools/audio_sink.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/md5digest.h" +#include "webrtc/rtc_base/stringencode.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/audio_loop.h b/webrtc/modules/audio_coding/neteq/tools/audio_loop.h index 40b2c55aef..2c4aed86a9 100644 --- a/webrtc/modules/audio_coding/neteq/tools/audio_loop.h +++ b/webrtc/modules/audio_coding/neteq/tools/audio_loop.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/audio_sink.h b/webrtc/modules/audio_coding/neteq/tools/audio_sink.h index 5927b02758..076b408e82 100644 --- a/webrtc/modules/audio_coding/neteq/tools/audio_sink.h +++ b/webrtc/modules/audio_coding/neteq/tools/audio_sink.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_TOOLS_AUDIO_SINK_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_TOOLS_AUDIO_SINK_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.cc b/webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.cc index fbbd468df8..29e3402a74 100644 --- a/webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.cc +++ b/webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.cc @@ -12,9 +12,9 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.h" #include "webrtc/modules/audio_coding/neteq/tools/packet.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.h b/webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.h index d1f88771b9..12503339cb 100644 --- a/webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.h +++ b/webrtc/modules/audio_coding/neteq/tools/constant_pcm_packet_source.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/neteq/tools/packet_source.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/encode_neteq_input.cc b/webrtc/modules/audio_coding/neteq/tools/encode_neteq_input.cc index 5fabb6f492..41bed7c31b 100644 --- a/webrtc/modules/audio_coding/neteq/tools/encode_neteq_input.cc +++ b/webrtc/modules/audio_coding/neteq/tools/encode_neteq_input.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.cc b/webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.cc index 1cc814fa88..eef32df4cf 100644 --- a/webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.cc +++ b/webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.h b/webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.h index 9f91c81e40..d39af1e9e6 100644 --- a/webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.h +++ b/webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.h @@ -14,9 +14,9 @@ #include #include "webrtc/api/audio_codecs/audio_decoder.h" -#include "webrtc/base/array_view.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/input_audio_file.cc b/webrtc/modules/audio_coding/neteq/tools/input_audio_file.cc index 17c48144a8..97d20bc973 100644 --- a/webrtc/modules/audio_coding/neteq/tools/input_audio_file.cc +++ b/webrtc/modules/audio_coding/neteq/tools/input_audio_file.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/input_audio_file.h b/webrtc/modules/audio_coding/neteq/tools/input_audio_file.h index a6e12db24d..271c513587 100644 --- a/webrtc/modules/audio_coding/neteq/tools/input_audio_file.h +++ b/webrtc/modules/audio_coding/neteq/tools/input_audio_file.h @@ -15,7 +15,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_delay_analyzer.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_delay_analyzer.cc index 6421d0ce1a..a0f5aa7217 100644 --- a/webrtc/modules/audio_coding/neteq/tools/neteq_delay_analyzer.cc +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_delay_analyzer.cc @@ -17,7 +17,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_delay_analyzer.h b/webrtc/modules/audio_coding/neteq/tools/neteq_delay_analyzer.h index 87bed2fc4e..b652bf2290 100644 --- a/webrtc/modules/audio_coding/neteq/tools/neteq_delay_analyzer.h +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_delay_analyzer.h @@ -16,9 +16,9 @@ #include #include -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_coding/neteq/tools/neteq_input.h" #include "webrtc/modules/audio_coding/neteq/tools/neteq_test.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_external_decoder_test.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_external_decoder_test.cc index 8b7ca0910c..8d88b08caa 100644 --- a/webrtc/modules/audio_coding/neteq/tools/neteq_external_decoder_test.cc +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_external_decoder_test.cc @@ -12,7 +12,7 @@ #include "webrtc/modules/audio_coding/neteq/tools/neteq_external_decoder_test.h" #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" -#include "webrtc/base/format_macros.h" +#include "webrtc/rtc_base/format_macros.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_input.h b/webrtc/modules/audio_coding/neteq/tools/neteq_input.h index a1e51a3045..1e0889336a 100644 --- a/webrtc/modules/audio_coding/neteq/tools/neteq_input.h +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_input.h @@ -15,11 +15,11 @@ #include #include -#include "webrtc/base/buffer.h" -#include "webrtc/base/optional.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/neteq/tools/packet.h" #include "webrtc/modules/audio_coding/neteq/tools/packet_source.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_packet_source_input.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_packet_source_input.cc index 7d5aa3bd62..13a061f976 100644 --- a/webrtc/modules/audio_coding/neteq/tools/neteq_packet_source_input.cc +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_packet_source_input.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.h" #include "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.cc index 77787d87bd..ef0e31e2f6 100644 --- a/webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.cc +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.cc @@ -11,13 +11,13 @@ #include "webrtc/modules/audio_coding/neteq/tools/neteq_performance_test.h" #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" -#include "webrtc/base/checks.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/pcm16b/pcm16b.h" #include "webrtc/modules/audio_coding/neteq/include/neteq.h" #include "webrtc/modules/audio_coding/neteq/tools/audio_loop.h" #include "webrtc/modules/audio_coding/neteq/tools/rtp_generator.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/testsupport/fileutils.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_quality_test.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_quality_test.cc index eb026fed32..bca24d899e 100644 --- a/webrtc/modules/audio_coding/neteq/tools/neteq_quality_test.cc +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_quality_test.cc @@ -12,11 +12,11 @@ #include #include "webrtc/api/audio_codecs/builtin_audio_decoder_factory.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/neteq/tools/neteq_quality_test.h" #include "webrtc/modules/audio_coding/neteq/tools/output_audio_file.h" #include "webrtc/modules/audio_coding/neteq/tools/output_wav_file.h" #include "webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/testsupport/fileutils.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_replacement_input.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_replacement_input.cc index b2c3eef9f0..553c71f1a4 100644 --- a/webrtc/modules/audio_coding/neteq/tools/neteq_replacement_input.cc +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_replacement_input.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/audio_coding/neteq/tools/neteq_replacement_input.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc index c9082f4a01..3fd36bc747 100644 --- a/webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc +++ b/webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc @@ -22,7 +22,6 @@ #include #include "gflags/gflags.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/neteq/include/neteq.h" #include "webrtc/modules/audio_coding/neteq/tools/fake_decode_from_file.h" #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" @@ -34,6 +33,7 @@ #include "webrtc/modules/audio_coding/neteq/tools/output_wav_file.h" #include "webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/testsupport/fileutils.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_coding/neteq/tools/output_audio_file.h b/webrtc/modules/audio_coding/neteq/tools/output_audio_file.h index a9142a63c1..79344703de 100644 --- a/webrtc/modules/audio_coding/neteq/tools/output_audio_file.h +++ b/webrtc/modules/audio_coding/neteq/tools/output_audio_file.h @@ -15,8 +15,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/tools/audio_sink.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/output_wav_file.h b/webrtc/modules/audio_coding/neteq/tools/output_wav_file.h index c36c7da983..7b3431d378 100644 --- a/webrtc/modules/audio_coding/neteq/tools/output_wav_file.h +++ b/webrtc/modules/audio_coding/neteq/tools/output_wav_file.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/wav_file.h" #include "webrtc/modules/audio_coding/neteq/tools/audio_sink.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/packet.cc b/webrtc/modules/audio_coding/neteq/tools/packet.cc index 901aa850d5..b5b1b2f97a 100644 --- a/webrtc/modules/audio_coding/neteq/tools/packet.cc +++ b/webrtc/modules/audio_coding/neteq/tools/packet.cc @@ -14,9 +14,9 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/packet.h b/webrtc/modules/audio_coding/neteq/tools/packet.h index 5d78ffa8f5..ce9ef5a466 100644 --- a/webrtc/modules/audio_coding/neteq/tools/packet.h +++ b/webrtc/modules/audio_coding/neteq/tools/packet.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_types.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/packet_source.h b/webrtc/modules/audio_coding/neteq/tools/packet_source.h index caae4ae790..233ddec018 100644 --- a/webrtc/modules/audio_coding/neteq/tools/packet_source.h +++ b/webrtc/modules/audio_coding/neteq/tools/packet_source.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_coding/neteq/tools/packet.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.cc b/webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.cc index f5fe16691e..45c5b2028c 100644 --- a/webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.cc +++ b/webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.h b/webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.h index c0af3546b0..b008d19562 100644 --- a/webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.h +++ b/webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/resampler/include/resampler.h" #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc b/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc index d9692e06e8..f54f91eb69 100644 --- a/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc +++ b/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc @@ -15,11 +15,10 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/call/call.h" #include "webrtc/modules/audio_coding/neteq/tools/packet.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" - +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.h b/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.h index fad491e8a2..15e3ce7eb8 100644 --- a/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.h +++ b/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.h @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/logging/rtc_event_log/rtc_event_log_parser.h" #include "webrtc/modules/audio_coding/neteq/tools/packet_source.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/rtp_file_source.cc b/webrtc/modules/audio_coding/neteq/tools/rtp_file_source.cc index 814def12db..5ea8de919f 100644 --- a/webrtc/modules/audio_coding/neteq/tools/rtp_file_source.cc +++ b/webrtc/modules/audio_coding/neteq/tools/rtp_file_source.cc @@ -20,9 +20,9 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_coding/neteq/tools/packet.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/rtp_file_reader.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h b/webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h index 1b98d6cb32..9b0160f4ef 100644 --- a/webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h +++ b/webrtc/modules/audio_coding/neteq/tools/rtp_file_source.h @@ -16,10 +16,10 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/neteq/tools/packet_source.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/rtp_generator.h b/webrtc/modules/audio_coding/neteq/tools/rtp_generator.h index c733fff563..154a38cb72 100644 --- a/webrtc/modules/audio_coding/neteq/tools/rtp_generator.h +++ b/webrtc/modules/audio_coding/neteq/tools/rtp_generator.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CODING_NETEQ_TOOLS_RTP_GENERATOR_H_ #define WEBRTC_MODULES_AUDIO_CODING_NETEQ_TOOLS_RTP_GENERATOR_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/common_types.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/neteq/tools/rtpcat.cc b/webrtc/modules/audio_coding/neteq/tools/rtpcat.cc index e1f49f7896..d903ca2486 100644 --- a/webrtc/modules/audio_coding/neteq/tools/rtpcat.cc +++ b/webrtc/modules/audio_coding/neteq/tools/rtpcat.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/rtp_file_reader.h" #include "webrtc/test/rtp_file_writer.h" diff --git a/webrtc/modules/audio_coding/test/APITest.cc b/webrtc/modules/audio_coding/test/APITest.cc index 6a458334e8..d18cdef018 100644 --- a/webrtc/modules/audio_coding/test/APITest.cc +++ b/webrtc/modules/audio_coding/test/APITest.cc @@ -19,11 +19,11 @@ #include #include -#include "webrtc/base/platform_thread.h" -#include "webrtc/base/timeutils.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h" #include "webrtc/modules/audio_coding/test/utility.h" +#include "webrtc/rtc_base/platform_thread.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/system_wrappers/include/trace.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_coding/test/Channel.cc b/webrtc/modules/audio_coding/test/Channel.cc index 46c398b1b7..4c659530b1 100644 --- a/webrtc/modules/audio_coding/test/Channel.cc +++ b/webrtc/modules/audio_coding/test/Channel.cc @@ -13,8 +13,8 @@ #include #include -#include "webrtc/base/format_macros.h" -#include "webrtc/base/timeutils.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/test/Channel.h b/webrtc/modules/audio_coding/test/Channel.h index c45864acbb..aeb535a574 100644 --- a/webrtc/modules/audio_coding/test/Channel.h +++ b/webrtc/modules/audio_coding/test/Channel.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_coding/include/audio_coding_module.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/test/PCMFile.h b/webrtc/modules/audio_coding/test/PCMFile.h index 63ab960d66..fd1c53a10b 100644 --- a/webrtc/modules/audio_coding/test/PCMFile.h +++ b/webrtc/modules/audio_coding/test/PCMFile.h @@ -16,8 +16,8 @@ #include -#include "webrtc/base/optional.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_coding/test/TestAllCodecs.cc b/webrtc/modules/audio_coding/test/TestAllCodecs.cc index 96c52414a0..aedf82c089 100644 --- a/webrtc/modules/audio_coding/test/TestAllCodecs.cc +++ b/webrtc/modules/audio_coding/test/TestAllCodecs.cc @@ -14,12 +14,12 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h" #include "webrtc/modules/audio_coding/include/audio_coding_module.h" #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" #include "webrtc/modules/audio_coding/test/utility.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_conference_mixer/include/audio_conference_mixer_defines.h b/webrtc/modules/audio_conference_mixer/include/audio_conference_mixer_defines.h index e1c5aedc88..c7b07a0bfd 100644 --- a/webrtc/modules/audio_conference_mixer/include/audio_conference_mixer_defines.h +++ b/webrtc/modules/audio_conference_mixer/include/audio_conference_mixer_defines.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_CONFERENCE_MIXER_INCLUDE_AUDIO_CONFERENCE_MIXER_DEFINES_H_ #define WEBRTC_MODULES_AUDIO_CONFERENCE_MIXER_INCLUDE_AUDIO_CONFERENCE_MIXER_DEFINES_H_ -#include "webrtc/base/checks.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_conference_mixer/source/audio_conference_mixer_impl.h b/webrtc/modules/audio_conference_mixer/source/audio_conference_mixer_impl.h index 6ed716329a..865de6f5e5 100644 --- a/webrtc/modules/audio_conference_mixer/source/audio_conference_mixer_impl.h +++ b/webrtc/modules/audio_conference_mixer/source/audio_conference_mixer_impl.h @@ -15,11 +15,11 @@ #include #include -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_conference_mixer/include/audio_conference_mixer.h" #include "webrtc/modules/audio_conference_mixer/source/memory_pool.h" #include "webrtc/modules/audio_conference_mixer/source/time_scheduler.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_conference_mixer/source/memory_pool_posix.h b/webrtc/modules/audio_conference_mixer/source/memory_pool_posix.h index 8e726f9fca..695878dbb2 100644 --- a/webrtc/modules/audio_conference_mixer/source/memory_pool_posix.h +++ b/webrtc/modules/audio_conference_mixer/source/memory_pool_posix.h @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/criticalsection.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_conference_mixer/source/time_scheduler.cc b/webrtc/modules/audio_conference_mixer/source/time_scheduler.cc index 877d98b053..5600e0ccb0 100644 --- a/webrtc/modules/audio_conference_mixer/source/time_scheduler.cc +++ b/webrtc/modules/audio_conference_mixer/source/time_scheduler.cc @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/timeutils.h" #include "webrtc/modules/audio_conference_mixer/source/time_scheduler.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { TimeScheduler::TimeScheduler(const int64_t periodicityInMs) diff --git a/webrtc/modules/audio_conference_mixer/source/time_scheduler.h b/webrtc/modules/audio_conference_mixer/source/time_scheduler.h index 52403422d2..e3531c4874 100644 --- a/webrtc/modules/audio_conference_mixer/source/time_scheduler.h +++ b/webrtc/modules/audio_conference_mixer/source/time_scheduler.h @@ -11,7 +11,7 @@ // The TimeScheduler class keeps track of periodic events. It is non-drifting // and keeps track of any missed periods so that it is possible to catch up. // (compare to a metronome) -#include "webrtc/base/criticalsection.h" +#include "webrtc/rtc_base/criticalsection.h" #ifndef WEBRTC_MODULES_AUDIO_CONFERENCE_MIXER_SOURCE_TIME_SCHEDULER_H_ #define WEBRTC_MODULES_AUDIO_CONFERENCE_MIXER_SOURCE_TIME_SCHEDULER_H_ diff --git a/webrtc/modules/audio_device/android/audio_device_template.h b/webrtc/modules/audio_device/android/audio_device_template.h index f8307f5105..52107cc8b7 100644 --- a/webrtc/modules/audio_device/android/audio_device_template.h +++ b/webrtc/modules/audio_device/android/audio_device_template.h @@ -11,11 +11,11 @@ #ifndef WEBRTC_MODULES_AUDIO_DEVICE_ANDROID_AUDIO_DEVICE_TEMPLATE_H_ #define WEBRTC_MODULES_AUDIO_DEVICE_ANDROID_AUDIO_DEVICE_TEMPLATE_H_ -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_device/android/audio_manager.h" #include "webrtc/modules/audio_device/audio_device_generic.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/android/audio_device_unittest.cc b/webrtc/modules/audio_device/android/audio_device_unittest.cc index 680d3a1592..49403c95ea 100644 --- a/webrtc/modules/audio_device/android/audio_device_unittest.cc +++ b/webrtc/modules/audio_device/android/audio_device_unittest.cc @@ -16,11 +16,6 @@ #include #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/format_macros.h" -#include "webrtc/base/scoped_ref_ptr.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/audio_device/android/audio_common.h" #include "webrtc/modules/audio_device/android/audio_manager.h" #include "webrtc/modules/audio_device/android/build_info.h" @@ -28,6 +23,11 @@ #include "webrtc/modules/audio_device/audio_device_impl.h" #include "webrtc/modules/audio_device/include/audio_device.h" #include "webrtc/modules/audio_device/include/mock_audio_transport.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_device/android/audio_manager.cc b/webrtc/modules/audio_device/android/audio_manager.cc index d56e9c1bef..da348d2117 100644 --- a/webrtc/modules/audio_device/android/audio_manager.cc +++ b/webrtc/modules/audio_device/android/audio_manager.cc @@ -14,10 +14,10 @@ #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_device/android/audio_common.h" #include "webrtc/modules/utility/include/helpers_android.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" #define TAG "AudioManager" #define ALOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, TAG, __VA_ARGS__) diff --git a/webrtc/modules/audio_device/android/audio_manager.h b/webrtc/modules/audio_device/android/audio_manager.h index 6540cc505d..e15e4aaf77 100644 --- a/webrtc/modules/audio_device/android/audio_manager.h +++ b/webrtc/modules/audio_device/android/audio_manager.h @@ -16,14 +16,14 @@ #include #include -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_device/android/audio_common.h" -#include "webrtc/modules/audio_device/audio_device_config.h" -#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/audio_device/android/opensles_common.h" +#include "webrtc/modules/audio_device/audio_device_config.h" #include "webrtc/modules/audio_device/audio_device_generic.h" +#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/utility/include/helpers_android.h" #include "webrtc/modules/utility/include/jvm_android.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/android/audio_manager_unittest.cc b/webrtc/modules/audio_device/android/audio_manager_unittest.cc index 2507976522..0ebc66258e 100644 --- a/webrtc/modules/audio_device/android/audio_manager_unittest.cc +++ b/webrtc/modules/audio_device/android/audio_manager_unittest.cc @@ -10,11 +10,11 @@ #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/format_macros.h" #include "webrtc/modules/audio_device/android/audio_manager.h" #include "webrtc/modules/audio_device/android/build_info.h" #include "webrtc/modules/audio_device/android/ensure_initialized.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/format_macros.h" #include "webrtc/test/gtest.h" #define PRINT(...) fprintf(stderr, __VA_ARGS__); diff --git a/webrtc/modules/audio_device/android/audio_record_jni.cc b/webrtc/modules/audio_device/android/audio_record_jni.cc index 2a9eacf838..ad8c02756e 100644 --- a/webrtc/modules/audio_device/android/audio_record_jni.cc +++ b/webrtc/modules/audio_device/android/audio_record_jni.cc @@ -14,10 +14,10 @@ #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/format_macros.h" #include "webrtc/modules/audio_device/android/audio_common.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" #define TAG "AudioRecordJni" #define ALOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, TAG, __VA_ARGS__) diff --git a/webrtc/modules/audio_device/android/audio_record_jni.h b/webrtc/modules/audio_device/android/audio_record_jni.h index 3a1a94aa41..385c9ade34 100644 --- a/webrtc/modules/audio_device/android/audio_record_jni.h +++ b/webrtc/modules/audio_device/android/audio_record_jni.h @@ -15,12 +15,12 @@ #include -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_device/android/audio_manager.h" -#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/audio_device/audio_device_generic.h" +#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/utility/include/helpers_android.h" #include "webrtc/modules/utility/include/jvm_android.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/android/audio_track_jni.cc b/webrtc/modules/audio_device/android/audio_track_jni.cc index 83c01c969a..e4a2198d77 100644 --- a/webrtc/modules/audio_device/android/audio_track_jni.cc +++ b/webrtc/modules/audio_device/android/audio_track_jni.cc @@ -15,9 +15,9 @@ #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/format_macros.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" #define TAG "AudioTrackJni" #define ALOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, TAG, __VA_ARGS__) diff --git a/webrtc/modules/audio_device/android/audio_track_jni.h b/webrtc/modules/audio_device/android/audio_track_jni.h index 2c78a5901c..392299bf8e 100644 --- a/webrtc/modules/audio_device/android/audio_track_jni.h +++ b/webrtc/modules/audio_device/android/audio_track_jni.h @@ -15,13 +15,13 @@ #include -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_device/android/audio_common.h" #include "webrtc/modules/audio_device/android/audio_manager.h" -#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/audio_device/audio_device_generic.h" +#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/utility/include/helpers_android.h" #include "webrtc/modules/utility/include/jvm_android.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/android/ensure_initialized.cc b/webrtc/modules/audio_device/android/ensure_initialized.cc index b82d4b7a4c..6407a64dcb 100644 --- a/webrtc/modules/audio_device/android/ensure_initialized.cc +++ b/webrtc/modules/audio_device/android/ensure_initialized.cc @@ -12,17 +12,17 @@ #include -#include "webrtc/base/ignore_wundef.h" +#include "webrtc/rtc_base/ignore_wundef.h" // Note: this dependency is dangerous since it reaches into Chromium's base. // There's a risk of e.g. macro clashes. This file may only be used in tests. RTC_PUSH_IGNORING_WUNDEF() #include "base/android/jni_android.h" RTC_POP_IGNORING_WUNDEF() -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_device/android/audio_record_jni.h" #include "webrtc/modules/audio_device/android/audio_track_jni.h" #include "webrtc/modules/utility/include/jvm_android.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace audiodevicemodule { diff --git a/webrtc/modules/audio_device/android/opensles_common.cc b/webrtc/modules/audio_device/android/opensles_common.cc index e25f8635d7..65ffbbea7f 100644 --- a/webrtc/modules/audio_device/android/opensles_common.cc +++ b/webrtc/modules/audio_device/android/opensles_common.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/android/opensles_common.h b/webrtc/modules/audio_device/android/opensles_common.h index b0859c2b6a..c71ae8d72f 100644 --- a/webrtc/modules/audio_device/android/opensles_common.h +++ b/webrtc/modules/audio_device/android/opensles_common.h @@ -14,6 +14,8 @@ #include #include +#include "webrtc/rtc_base/checks.h" + namespace webrtc { // Returns a string representation given an integer SL_RESULT_XXX code. diff --git a/webrtc/modules/audio_device/android/opensles_player.cc b/webrtc/modules/audio_device/android/opensles_player.cc index f79f4f6ee7..0ffb2594a5 100644 --- a/webrtc/modules/audio_device/android/opensles_player.cc +++ b/webrtc/modules/audio_device/android/opensles_player.cc @@ -12,14 +12,14 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/format_macros.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/audio_device/android/audio_common.h" #include "webrtc/modules/audio_device/android/audio_manager.h" #include "webrtc/modules/audio_device/fine_audio_buffer.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/timeutils.h" #define TAG "OpenSLESPlayer" #define ALOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, TAG, __VA_ARGS__) diff --git a/webrtc/modules/audio_device/android/opensles_player.h b/webrtc/modules/audio_device/android/opensles_player.h index 62de50eacd..d6fcd464ac 100644 --- a/webrtc/modules/audio_device/android/opensles_player.h +++ b/webrtc/modules/audio_device/android/opensles_player.h @@ -15,13 +15,13 @@ #include #include -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_device/android/audio_common.h" #include "webrtc/modules/audio_device/android/audio_manager.h" #include "webrtc/modules/audio_device/android/opensles_common.h" -#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/audio_device/audio_device_generic.h" +#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/utility/include/helpers_android.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/android/opensles_recorder.cc b/webrtc/modules/audio_device/android/opensles_recorder.cc index 9f5de20774..b180254918 100644 --- a/webrtc/modules/audio_device/android/opensles_recorder.cc +++ b/webrtc/modules/audio_device/android/opensles_recorder.cc @@ -12,14 +12,14 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/format_macros.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/audio_device/android/audio_common.h" #include "webrtc/modules/audio_device/android/audio_manager.h" #include "webrtc/modules/audio_device/fine_audio_buffer.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/timeutils.h" #define TAG "OpenSLESRecorder" #define ALOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, TAG, __VA_ARGS__) diff --git a/webrtc/modules/audio_device/android/opensles_recorder.h b/webrtc/modules/audio_device/android/opensles_recorder.h index 952371a43a..5f8da40c9c 100644 --- a/webrtc/modules/audio_device/android/opensles_recorder.h +++ b/webrtc/modules/audio_device/android/opensles_recorder.h @@ -17,13 +17,13 @@ #include -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_device/android/audio_common.h" #include "webrtc/modules/audio_device/android/audio_manager.h" #include "webrtc/modules/audio_device/android/opensles_common.h" -#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/audio_device/audio_device_generic.h" +#include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/utility/include/helpers_android.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/audio_device_buffer.cc b/webrtc/modules/audio_device/audio_device_buffer.cc index b074c67157..8227d5b077 100644 --- a/webrtc/modules/audio_device/audio_device_buffer.cc +++ b/webrtc/modules/audio_device/audio_device_buffer.cc @@ -13,14 +13,14 @@ #include "webrtc/modules/audio_device/audio_device_buffer.h" -#include "webrtc/base/arraysize.h" -#include "webrtc/base/bind.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/format_macros.h" -#include "webrtc/base/timeutils.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_device/audio_device_config.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/bind.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/audio_device_buffer.h b/webrtc/modules/audio_device/audio_device_buffer.h index c2ea638ab4..04e1be8687 100644 --- a/webrtc/modules/audio_device/audio_device_buffer.h +++ b/webrtc/modules/audio_device/audio_device_buffer.h @@ -11,12 +11,12 @@ #ifndef WEBRTC_MODULES_AUDIO_DEVICE_AUDIO_DEVICE_BUFFER_H_ #define WEBRTC_MODULES_AUDIO_DEVICE_AUDIO_DEVICE_BUFFER_H_ -#include "webrtc/base/buffer.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/task_queue.h" -#include "webrtc/base/thread_annotations.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_device/include/audio_device.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/task_queue.h" +#include "webrtc/rtc_base/thread_annotations.h" +#include "webrtc/rtc_base/thread_checker.h" #include "webrtc/system_wrappers/include/file_wrapper.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_device/audio_device_data_observer.cc b/webrtc/modules/audio_device/audio_device_data_observer.cc index 08ca1693b2..849f529adc 100644 --- a/webrtc/modules/audio_device/audio_device_data_observer.cc +++ b/webrtc/modules/audio_device/audio_device_data_observer.cc @@ -9,8 +9,8 @@ */ #include "webrtc/modules/audio_device/include/audio_device_data_observer.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/refcountedobject.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/refcountedobject.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/audio_device_generic.cc b/webrtc/modules/audio_device/audio_device_generic.cc index f0511e9fe3..e1c6e6f5b4 100644 --- a/webrtc/modules/audio_device/audio_device_generic.cc +++ b/webrtc/modules/audio_device/audio_device_generic.cc @@ -9,7 +9,7 @@ */ #include "webrtc/modules/audio_device/audio_device_generic.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/audio_device_impl.cc b/webrtc/modules/audio_device/audio_device_impl.cc index 45bc3a5aaf..1731c38716 100644 --- a/webrtc/modules/audio_device/audio_device_impl.cc +++ b/webrtc/modules/audio_device/audio_device_impl.cc @@ -8,15 +8,14 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/refcount.h" -#include "webrtc/base/timeutils.h" +#include "webrtc/modules/audio_device/audio_device_impl.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_device/audio_device_config.h" #include "webrtc/modules/audio_device/audio_device_generic.h" -#include "webrtc/modules/audio_device/audio_device_impl.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/refcount.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/metrics.h" #include diff --git a/webrtc/modules/audio_device/audio_device_impl.h b/webrtc/modules/audio_device/audio_device_impl.h index 709eb769bd..072039003e 100644 --- a/webrtc/modules/audio_device/audio_device_impl.h +++ b/webrtc/modules/audio_device/audio_device_impl.h @@ -15,10 +15,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_device/audio_device_buffer.h" #include "webrtc/modules/audio_device/include/audio_device.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/audio_device_unittest.cc b/webrtc/modules/audio_device/audio_device_unittest.cc index 4f86d100bd..1327cda801 100644 --- a/webrtc/modules/audio_device/audio_device_unittest.cc +++ b/webrtc/modules/audio_device/audio_device_unittest.cc @@ -12,21 +12,21 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/buffer.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/event.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/race_checker.h" -#include "webrtc/base/safe_conversions.h" -#include "webrtc/base/scoped_ref_ptr.h" -#include "webrtc/base/thread_annotations.h" -#include "webrtc/base/thread_checker.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/audio_device/audio_device_impl.h" #include "webrtc/modules/audio_device/include/audio_device.h" #include "webrtc/modules/audio_device/include/mock_audio_transport.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/event.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/race_checker.h" +#include "webrtc/rtc_base/safe_conversions.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/thread_annotations.h" +#include "webrtc/rtc_base/thread_checker.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_device/dummy/file_audio_device.cc b/webrtc/modules/audio_device/dummy/file_audio_device.cc index 92b09e0a9d..14230edbfa 100644 --- a/webrtc/modules/audio_device/dummy/file_audio_device.cc +++ b/webrtc/modules/audio_device/dummy/file_audio_device.cc @@ -8,10 +8,10 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/platform_thread.h" #include "webrtc/modules/audio_device/dummy/file_audio_device.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/platform_thread.h" #include "webrtc/system_wrappers/include/sleep.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/dummy/file_audio_device.h b/webrtc/modules/audio_device/dummy/file_audio_device.h index 41760552c3..160ba1b2e0 100644 --- a/webrtc/modules/audio_device/dummy/file_audio_device.h +++ b/webrtc/modules/audio_device/dummy/file_audio_device.h @@ -16,9 +16,9 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/audio_device/audio_device_generic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/file_wrapper.h" namespace rtc { diff --git a/webrtc/modules/audio_device/dummy/file_audio_device_factory.cc b/webrtc/modules/audio_device/dummy/file_audio_device_factory.cc index cc526ead5f..bce6be4633 100644 --- a/webrtc/modules/audio_device/dummy/file_audio_device_factory.cc +++ b/webrtc/modules/audio_device/dummy/file_audio_device_factory.cc @@ -13,8 +13,8 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_device/dummy/file_audio_device.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/fine_audio_buffer.cc b/webrtc/modules/audio_device/fine_audio_buffer.cc index 27d1937868..848721061a 100644 --- a/webrtc/modules/audio_device/fine_audio_buffer.cc +++ b/webrtc/modules/audio_device/fine_audio_buffer.cc @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_device/audio_device_buffer.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/fine_audio_buffer.h b/webrtc/modules/audio_device/fine_audio_buffer.h index 9f3bb5e2b7..f2ee20fc33 100644 --- a/webrtc/modules/audio_device/fine_audio_buffer.h +++ b/webrtc/modules/audio_device/fine_audio_buffer.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/buffer.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/buffer.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/fine_audio_buffer_unittest.cc b/webrtc/modules/audio_device/fine_audio_buffer_unittest.cc index c7fef57097..21043eaaf5 100644 --- a/webrtc/modules/audio_device/fine_audio_buffer_unittest.cc +++ b/webrtc/modules/audio_device/fine_audio_buffer_unittest.cc @@ -13,8 +13,8 @@ #include #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_device/mock_audio_device_buffer.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_device/include/audio_device.h b/webrtc/modules/audio_device/include/audio_device.h index dfa58aa964..8fdd21246e 100644 --- a/webrtc/modules/audio_device/include/audio_device.h +++ b/webrtc/modules/audio_device/include/audio_device.h @@ -11,9 +11,9 @@ #ifndef MODULES_AUDIO_DEVICE_INCLUDE_AUDIO_DEVICE_H_ #define MODULES_AUDIO_DEVICE_INCLUDE_AUDIO_DEVICE_H_ -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/audio_device/include/audio_device_defines.h" #include "webrtc/modules/include/module.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/include/audio_device_data_observer.h b/webrtc/modules/audio_device/include/audio_device_data_observer.h index f1a3d684da..e96720c696 100644 --- a/webrtc/modules/audio_device/include/audio_device_data_observer.h +++ b/webrtc/modules/audio_device/include/audio_device_data_observer.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_DEVICE_INCLUDE_AUDIO_DEVICE_DATA_OBSERVER_H_ #define WEBRTC_MODULES_AUDIO_DEVICE_INCLUDE_AUDIO_DEVICE_DATA_OBSERVER_H_ -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/audio_device/include/audio_device.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/ios/audio_device_ios.h b/webrtc/modules/audio_device/ios/audio_device_ios.h index 0ad23577e5..641aba0891 100644 --- a/webrtc/modules/audio_device/ios/audio_device_ios.h +++ b/webrtc/modules/audio_device/ios/audio_device_ios.h @@ -14,14 +14,14 @@ #include #include "WebRTC/RTCMacros.h" -#include "webrtc/base/buffer.h" -#include "webrtc/base/gtest_prod_util.h" -#include "webrtc/base/thread.h" -#include "webrtc/base/thread_annotations.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_device/audio_device_generic.h" #include "webrtc/modules/audio_device/ios/audio_session_observer.h" #include "webrtc/modules/audio_device/ios/voice_processing_audio_unit.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/gtest_prod_util.h" +#include "webrtc/rtc_base/thread.h" +#include "webrtc/rtc_base/thread_annotations.h" +#include "webrtc/rtc_base/thread_checker.h" RTC_FWD_DECL_OBJC_CLASS(RTCAudioSessionDelegateAdapter); diff --git a/webrtc/modules/audio_device/ios/audio_session_observer.h b/webrtc/modules/audio_device/ios/audio_session_observer.h index be714553f5..459226fb75 100644 --- a/webrtc/modules/audio_device/ios/audio_session_observer.h +++ b/webrtc/modules/audio_device/ios/audio_session_observer.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_DEVICE_IOS_AUDIO_SESSION_OBSERVER_H_ #define WEBRTC_MODULES_AUDIO_DEVICE_IOS_AUDIO_SESSION_OBSERVER_H_ -#include "webrtc/base/asyncinvoker.h" -#include "webrtc/base/thread.h" +#include "webrtc/rtc_base/asyncinvoker.h" +#include "webrtc/rtc_base/thread.h" namespace webrtc { diff --git a/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc b/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc index defae6b680..140dbcb327 100644 --- a/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc +++ b/webrtc/modules/audio_device/linux/audio_device_alsa_linux.cc @@ -10,9 +10,9 @@ #include -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_device/audio_device_config.h" #include "webrtc/modules/audio_device/linux/audio_device_alsa_linux.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/system_wrappers/include/sleep.h" diff --git a/webrtc/modules/audio_device/linux/audio_device_alsa_linux.h b/webrtc/modules/audio_device/linux/audio_device_alsa_linux.h index 40525982bb..42d63b56da 100644 --- a/webrtc/modules/audio_device/linux/audio_device_alsa_linux.h +++ b/webrtc/modules/audio_device/linux/audio_device_alsa_linux.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/platform_thread.h" #include "webrtc/modules/audio_device/audio_device_generic.h" #include "webrtc/modules/audio_device/linux/audio_mixer_manager_alsa_linux.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/platform_thread.h" #if defined(USE_X11) #include diff --git a/webrtc/modules/audio_device/linux/audio_device_pulse_linux.cc b/webrtc/modules/audio_device/linux/audio_device_pulse_linux.cc index 54fabb56ed..3f090c6b99 100644 --- a/webrtc/modules/audio_device/linux/audio_device_pulse_linux.cc +++ b/webrtc/modules/audio_device/linux/audio_device_pulse_linux.cc @@ -10,10 +10,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_device/audio_device_config.h" #include "webrtc/modules/audio_device/linux/audio_device_pulse_linux.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/system_wrappers/include/trace.h" diff --git a/webrtc/modules/audio_device/linux/audio_device_pulse_linux.h b/webrtc/modules/audio_device/linux/audio_device_pulse_linux.h index 58934583db..78909c185a 100644 --- a/webrtc/modules/audio_device/linux/audio_device_pulse_linux.h +++ b/webrtc/modules/audio_device/linux/audio_device_pulse_linux.h @@ -13,11 +13,11 @@ #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/platform_thread.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_device/audio_device_generic.h" #include "webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/platform_thread.h" +#include "webrtc/rtc_base/thread_checker.h" #include #include diff --git a/webrtc/modules/audio_device/linux/audio_mixer_manager_alsa_linux.h b/webrtc/modules/audio_device/linux/audio_mixer_manager_alsa_linux.h index 0ad11c8b6d..d9838328d1 100644 --- a/webrtc/modules/audio_device/linux/audio_mixer_manager_alsa_linux.h +++ b/webrtc/modules/audio_device/linux/audio_mixer_manager_alsa_linux.h @@ -11,9 +11,9 @@ #ifndef WEBRTC_AUDIO_DEVICE_AUDIO_MIXER_MANAGER_ALSA_LINUX_H #define WEBRTC_AUDIO_DEVICE_AUDIO_MIXER_MANAGER_ALSA_LINUX_H -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_device/include/audio_device.h" #include "webrtc/modules/audio_device/linux/alsasymboltable_linux.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/typedefs.h" #include diff --git a/webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.cc b/webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.cc index a9b3d47936..8325b505e9 100644 --- a/webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.cc +++ b/webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.cc @@ -11,8 +11,8 @@ #include #include "webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/trace.h" -#include "webrtc/base/checks.h" extern webrtc::adm_linux_pulse::PulseAudioSymbolTable PaSymbolTable; diff --git a/webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.h b/webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.h index b9c8a1d55e..a5806af96e 100644 --- a/webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.h +++ b/webrtc/modules/audio_device/linux/audio_mixer_manager_pulse_linux.h @@ -13,8 +13,8 @@ #include "webrtc/modules/audio_device/include/audio_device.h" #include "webrtc/modules/audio_device/linux/pulseaudiosymboltable_linux.h" +#include "webrtc/rtc_base/thread_checker.h" #include "webrtc/typedefs.h" -#include "webrtc/base/thread_checker.h" #include #include diff --git a/webrtc/modules/audio_device/linux/latebindingsymboltable_linux.h b/webrtc/modules/audio_device/linux/latebindingsymboltable_linux.h index d62f00a822..03f0b719d9 100644 --- a/webrtc/modules/audio_device/linux/latebindingsymboltable_linux.h +++ b/webrtc/modules/audio_device/linux/latebindingsymboltable_linux.h @@ -15,7 +15,7 @@ #include // for NULL #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" // This file provides macros for creating "symbol table" classes to simplify the // dynamic loading of symbols from DLLs. Currently the implementation only diff --git a/webrtc/modules/audio_device/mac/audio_device_mac.cc b/webrtc/modules/audio_device/mac/audio_device_mac.cc index 0ea052fbb8..e40d23c725 100644 --- a/webrtc/modules/audio_device/mac/audio_device_mac.cc +++ b/webrtc/modules/audio_device/mac/audio_device_mac.cc @@ -8,13 +8,13 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/platform_thread.h" -#include "webrtc/modules/audio_device/audio_device_config.h" #include "webrtc/modules/audio_device/mac/audio_device_mac.h" +#include "webrtc/modules/audio_device/audio_device_config.h" #include "webrtc/modules/audio_device/mac/portaudio/pa_ringbuffer.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/platform_thread.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/system_wrappers/include/trace.h" diff --git a/webrtc/modules/audio_device/mac/audio_device_mac.h b/webrtc/modules/audio_device/mac/audio_device_mac.h index 52b44eb4ff..0acf752ac4 100644 --- a/webrtc/modules/audio_device/mac/audio_device_mac.h +++ b/webrtc/modules/audio_device/mac/audio_device_mac.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/audio_device/audio_device_generic.h" #include "webrtc/modules/audio_device/mac/audio_mixer_manager_mac.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include diff --git a/webrtc/modules/audio_device/mac/audio_mixer_manager_mac.h b/webrtc/modules/audio_device/mac/audio_mixer_manager_mac.h index 17515a6720..17e7b25e1d 100644 --- a/webrtc/modules/audio_device/mac/audio_mixer_manager_mac.h +++ b/webrtc/modules/audio_device/mac/audio_mixer_manager_mac.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_AUDIO_DEVICE_AUDIO_MIXER_MANAGER_MAC_H #define WEBRTC_AUDIO_DEVICE_AUDIO_MIXER_MANAGER_MAC_H -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_device/include/audio_device.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/system_wrappers/include/trace.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_device/test/audio_device_test_api.cc b/webrtc/modules/audio_device/test/audio_device_test_api.cc index 5bf01e6eae..a518654873 100644 --- a/webrtc/modules/audio_device/test/audio_device_test_api.cc +++ b/webrtc/modules/audio_device/test/audio_device_test_api.cc @@ -14,11 +14,11 @@ #include -#include "webrtc/base/location.h" #include "webrtc/modules/audio_device/audio_device_config.h" #include "webrtc/modules/audio_device/audio_device_impl.h" #include "webrtc/modules/audio_device/test/audio_device_test_defines.h" #include "webrtc/modules/utility/include/process_thread.h" +#include "webrtc/rtc_base/location.h" #include "webrtc/system_wrappers/include/sleep.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_device/win/audio_device_core_win.cc b/webrtc/modules/audio_device/win/audio_device_core_win.cc index 370bb599a0..2b0a3adfd8 100644 --- a/webrtc/modules/audio_device/win/audio_device_core_win.cc +++ b/webrtc/modules/audio_device/win/audio_device_core_win.cc @@ -35,8 +35,8 @@ #include #include -#include "webrtc/base/logging.h" -#include "webrtc/base/platform_thread.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/platform_thread.h" #include "webrtc/system_wrappers/include/sleep.h" #include "webrtc/system_wrappers/include/trace.h" diff --git a/webrtc/modules/audio_device/win/audio_device_core_win.h b/webrtc/modules/audio_device/win/audio_device_core_win.h index 812b96b468..60ee9ef890 100644 --- a/webrtc/modules/audio_device/win/audio_device_core_win.h +++ b/webrtc/modules/audio_device/win/audio_device_core_win.h @@ -24,8 +24,8 @@ #include #include // IMediaObject -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" // Use Multimedia Class Scheduler Service (MMCSS) to boost the thread priority #pragma comment( lib, "avrt.lib" ) diff --git a/webrtc/modules/audio_mixer/audio_frame_manipulator.cc b/webrtc/modules/audio_mixer/audio_frame_manipulator.cc index fff79a38cf..3f16bf7823 100644 --- a/webrtc/modules/audio_mixer/audio_frame_manipulator.cc +++ b/webrtc/modules/audio_mixer/audio_frame_manipulator.cc @@ -8,10 +8,10 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/audio/utility/audio_frame_operations.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_mixer/audio_frame_manipulator.h" +#include "webrtc/audio/utility/audio_frame_operations.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_mixer/audio_mixer_impl.cc b/webrtc/modules/audio_mixer/audio_mixer_impl.cc index 22fa7ae248..2ad4a3459f 100644 --- a/webrtc/modules/audio_mixer/audio_mixer_impl.cc +++ b/webrtc/modules/audio_mixer/audio_mixer_impl.cc @@ -15,9 +15,9 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_mixer/audio_frame_manipulator.h" #include "webrtc/modules/audio_mixer/default_output_rate_calculator.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_mixer/audio_mixer_impl.h b/webrtc/modules/audio_mixer/audio_mixer_impl.h index e729755842..93eea98168 100644 --- a/webrtc/modules/audio_mixer/audio_mixer_impl.h +++ b/webrtc/modules/audio_mixer/audio_mixer_impl.h @@ -15,13 +15,13 @@ #include #include "webrtc/api/audio/audio_mixer.h" -#include "webrtc/base/scoped_ref_ptr.h" -#include "webrtc/base/thread_annotations.h" -#include "webrtc/base/race_checker.h" #include "webrtc/modules/audio_mixer/frame_combiner.h" #include "webrtc/modules/audio_mixer/output_rate_calculator.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/race_checker.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_mixer/audio_mixer_impl_unittest.cc b/webrtc/modules/audio_mixer/audio_mixer_impl_unittest.cc index 70f06d0566..3ac61892b3 100644 --- a/webrtc/modules/audio_mixer/audio_mixer_impl_unittest.cc +++ b/webrtc/modules/audio_mixer/audio_mixer_impl_unittest.cc @@ -17,11 +17,11 @@ #include #include "webrtc/api/audio/audio_mixer.h" -#include "webrtc/base/bind.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/thread.h" #include "webrtc/modules/audio_mixer/audio_mixer_impl.h" #include "webrtc/modules/audio_mixer/default_output_rate_calculator.h" +#include "webrtc/rtc_base/bind.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/thread.h" #include "webrtc/test/gmock.h" using testing::_; diff --git a/webrtc/modules/audio_mixer/frame_combiner.cc b/webrtc/modules/audio_mixer/frame_combiner.cc index 7732c7cdcd..35b9949224 100644 --- a/webrtc/modules/audio_mixer/frame_combiner.cc +++ b/webrtc/modules/audio_mixer/frame_combiner.cc @@ -16,11 +16,11 @@ #include #include "webrtc/audio/utility/audio_frame_operations.h" -#include "webrtc/base/array_view.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_mixer/audio_frame_manipulator.h" #include "webrtc/modules/audio_mixer/audio_mixer_impl.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_mixer/frame_combiner_unittest.cc b/webrtc/modules/audio_mixer/frame_combiner_unittest.cc index 250c6e1954..fc048d0b2c 100644 --- a/webrtc/modules/audio_mixer/frame_combiner_unittest.cc +++ b/webrtc/modules/audio_mixer/frame_combiner_unittest.cc @@ -15,9 +15,9 @@ #include #include "webrtc/audio/utility/audio_frame_operations.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_mixer/gain_change_calculator.h" #include "webrtc/modules/audio_mixer/sine_wave_generator.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_mixer/gain_change_calculator.h b/webrtc/modules/audio_mixer/gain_change_calculator.h index ca7bf031a2..cb742cd35b 100644 --- a/webrtc/modules/audio_mixer/gain_change_calculator.h +++ b/webrtc/modules/audio_mixer/gain_change_calculator.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_AUDIO_MIXER_GAIN_CHANGE_CALCULATOR_H_ #define WEBRTC_MODULES_AUDIO_MIXER_GAIN_CHANGE_CALCULATOR_H_ -#include "webrtc/base/array_view.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { diff --git a/webrtc/modules/audio_mixer/sine_wave_generator.cc b/webrtc/modules/audio_mixer/sine_wave_generator.cc index f295045de0..e3acfe4748 100644 --- a/webrtc/modules/audio_mixer/sine_wave_generator.cc +++ b/webrtc/modules/audio_mixer/sine_wave_generator.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/safe_conversions.h" +#include "webrtc/rtc_base/safe_conversions.h" namespace webrtc { diff --git a/webrtc/modules/audio_mixer/sine_wave_generator.h b/webrtc/modules/audio_mixer/sine_wave_generator.h index 7d17293ef0..910f5ae185 100644 --- a/webrtc/modules/audio_mixer/sine_wave_generator.h +++ b/webrtc/modules/audio_mixer/sine_wave_generator.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_MIXER_SINE_WAVE_GENERATOR_H_ #define WEBRTC_MODULES_AUDIO_MIXER_SINE_WAVE_GENERATOR_H_ -#include "webrtc/base/checks.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec/aec_core.cc b/webrtc/modules/audio_processing/aec/aec_core.cc index f9e96ace04..3155bad972 100644 --- a/webrtc/modules/audio_processing/aec/aec_core.cc +++ b/webrtc/modules/audio_processing/aec/aec_core.cc @@ -20,16 +20,16 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" extern "C" { #include "webrtc/common_audio/ring_buffer.h" } -#include "webrtc/base/checks.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_processing/aec/aec_common.h" #include "webrtc/modules/audio_processing/aec/aec_core_optimized_methods.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" #include "webrtc/modules/audio_processing/utility/delay_estimator_wrapper.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" #include "webrtc/system_wrappers/include/metrics.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_processing/aec/aec_core.h b/webrtc/modules/audio_processing/aec/aec_core.h index 78cb787fa7..9a4c241915 100644 --- a/webrtc/modules/audio_processing/aec/aec_core.h +++ b/webrtc/modules/audio_processing/aec/aec_core.h @@ -22,11 +22,11 @@ extern "C" { #include "webrtc/common_audio/ring_buffer.h" } -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/wav_file.h" #include "webrtc/modules/audio_processing/aec/aec_common.h" #include "webrtc/modules/audio_processing/utility/block_mean_calculator.h" #include "webrtc/modules/audio_processing/utility/ooura_fft.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec/aec_resampler.cc b/webrtc/modules/audio_processing/aec/aec_resampler.cc index 2630841d4a..174fd20c34 100644 --- a/webrtc/modules/audio_processing/aec/aec_resampler.cc +++ b/webrtc/modules/audio_processing/aec/aec_resampler.cc @@ -18,8 +18,8 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aec/aec_core.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec/echo_cancellation_unittest.cc b/webrtc/modules/audio_processing/aec/echo_cancellation_unittest.cc index 20b63d667d..647e90cda2 100644 --- a/webrtc/modules/audio_processing/aec/echo_cancellation_unittest.cc +++ b/webrtc/modules/audio_processing/aec/echo_cancellation_unittest.cc @@ -15,8 +15,8 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aec/aec_core.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/adaptive_fir_filter.cc b/webrtc/modules/audio_processing/aec3/adaptive_fir_filter.cc index 7c29558c7e..b372df531d 100644 --- a/webrtc/modules/audio_processing/aec3/adaptive_fir_filter.cc +++ b/webrtc/modules/audio_processing/aec3/adaptive_fir_filter.cc @@ -20,8 +20,8 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aec3/fft_data.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h b/webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h index 75c418bf0f..d77cbcae15 100644 --- a/webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h +++ b/webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h @@ -15,13 +15,13 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/aec3_fft.h" #include "webrtc/modules/audio_processing/aec3/fft_data.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace aec3 { diff --git a/webrtc/modules/audio_processing/aec3/adaptive_fir_filter_unittest.cc b/webrtc/modules/audio_processing/aec3/adaptive_fir_filter_unittest.cc index 83c3ac8a8c..474174c2ee 100644 --- a/webrtc/modules/audio_processing/aec3/adaptive_fir_filter_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/adaptive_fir_filter_unittest.cc @@ -18,9 +18,6 @@ #if defined(WEBRTC_ARCH_X86_FAMILY) #include #endif -#include "webrtc/base/arraysize.h" -#include "webrtc/base/random.h" -#include "webrtc/base/safe_minmax.h" #include "webrtc/modules/audio_processing/aec3/aec3_fft.h" #include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h" @@ -28,6 +25,9 @@ #include "webrtc/modules/audio_processing/aec3/shadow_filter_update_gain.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/safe_minmax.h" #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_processing/aec3/aec3_fft.cc b/webrtc/modules/audio_processing/aec3/aec3_fft.cc index 3f9ff44e9c..cb06956d21 100644 --- a/webrtc/modules/audio_processing/aec3/aec3_fft.cc +++ b/webrtc/modules/audio_processing/aec3/aec3_fft.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/aec3_fft.h b/webrtc/modules/audio_processing/aec3/aec3_fft.h index 6cfe3bd9e7..f0b98b3e6e 100644 --- a/webrtc/modules/audio_processing/aec3/aec3_fft.h +++ b/webrtc/modules/audio_processing/aec3/aec3_fft.h @@ -13,11 +13,11 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/fft_data.h" #include "webrtc/modules/audio_processing/utility/ooura_fft.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/aec_state.cc b/webrtc/modules/audio_processing/aec3/aec_state.cc index 316f888717..3840ef9601 100644 --- a/webrtc/modules/audio_processing/aec3/aec_state.cc +++ b/webrtc/modules/audio_processing/aec3/aec_state.cc @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/atomicops.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/aec3/aec_state.h b/webrtc/modules/audio_processing/aec3/aec_state.h index 87089360a4..1b00bf55ff 100644 --- a/webrtc/modules/audio_processing/aec3/aec_state.h +++ b/webrtc/modules/audio_processing/aec3/aec_state.h @@ -15,14 +15,14 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/echo_path_variability.h" #include "webrtc/modules/audio_processing/aec3/erl_estimator.h" #include "webrtc/modules/audio_processing/aec3/erle_estimator.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/block_framer.cc b/webrtc/modules/audio_processing/aec3/block_framer.cc index 6425dae8c8..80ac83645e 100644 --- a/webrtc/modules/audio_processing/aec3/block_framer.cc +++ b/webrtc/modules/audio_processing/aec3/block_framer.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/block_framer.h b/webrtc/modules/audio_processing/aec3/block_framer.h index c8bca8ea44..d6c9144d3d 100644 --- a/webrtc/modules/audio_processing/aec3/block_framer.h +++ b/webrtc/modules/audio_processing/aec3/block_framer.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/block_processor.cc b/webrtc/modules/audio_processing/aec3/block_processor.cc index 2cf56066bd..3a32f3c80b 100644 --- a/webrtc/modules/audio_processing/aec3/block_processor.cc +++ b/webrtc/modules/audio_processing/aec3/block_processor.cc @@ -9,13 +9,13 @@ */ #include "webrtc/modules/audio_processing/aec3/block_processor.h" -#include "webrtc/base/atomicops.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/block_processor_metrics.h" #include "webrtc/modules/audio_processing/aec3/echo_path_variability.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/aec3/block_processor_metrics.h b/webrtc/modules/audio_processing/aec3/block_processor_metrics.h index 6c278cd793..1cff2a8d3e 100644 --- a/webrtc/modules/audio_processing/aec3/block_processor_metrics.h +++ b/webrtc/modules/audio_processing/aec3/block_processor_metrics.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_BLOCK_PROCESSOR_METRICS_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_BLOCK_PROCESSOR_METRICS_H_ -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/block_processor_unittest.cc b/webrtc/modules/audio_processing/aec3/block_processor_unittest.cc index 1c04536723..9f402ed846 100644 --- a/webrtc/modules/audio_processing/aec3/block_processor_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/block_processor_unittest.cc @@ -15,13 +15,13 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h" #include "webrtc/modules/audio_processing/aec3/mock/mock_render_delay_buffer.h" #include "webrtc/modules/audio_processing/aec3/mock/mock_render_delay_controller.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.cc b/webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.cc index 33cb910e7d..3ac86c0029 100644 --- a/webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.cc +++ b/webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.cc @@ -9,7 +9,7 @@ */ #include "webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h b/webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h index 438a166eae..8e11a8d983 100644 --- a/webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h +++ b/webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/comfort_noise_generator.h b/webrtc/modules/audio_processing/aec3/comfort_noise_generator.h index 14332f7881..3684f48fee 100644 --- a/webrtc/modules/audio_processing/aec3/comfort_noise_generator.h +++ b/webrtc/modules/audio_processing/aec3/comfort_noise_generator.h @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/aec3/fft_data.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace aec3 { diff --git a/webrtc/modules/audio_processing/aec3/comfort_noise_generator_unittest.cc b/webrtc/modules/audio_processing/aec3/comfort_noise_generator_unittest.cc index ce86f2db2c..9e10ee8ce3 100644 --- a/webrtc/modules/audio_processing/aec3/comfort_noise_generator_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/comfort_noise_generator_unittest.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/typedefs.h" -#include "webrtc/base/random.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" #include "webrtc/test/gtest.h" +#include "webrtc/typedefs.h" namespace webrtc { namespace aec3 { diff --git a/webrtc/modules/audio_processing/aec3/decimator_by_4.cc b/webrtc/modules/audio_processing/aec3/decimator_by_4.cc index aa6480f4e1..94d11d26f3 100644 --- a/webrtc/modules/audio_processing/aec3/decimator_by_4.cc +++ b/webrtc/modules/audio_processing/aec3/decimator_by_4.cc @@ -9,7 +9,7 @@ */ #include "webrtc/modules/audio_processing/aec3/decimator_by_4.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/aec3/decimator_by_4.h b/webrtc/modules/audio_processing/aec3/decimator_by_4.h index 5afc68118b..93b4b58b87 100644 --- a/webrtc/modules/audio_processing/aec3/decimator_by_4.h +++ b/webrtc/modules/audio_processing/aec3/decimator_by_4.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_canceller3.cc b/webrtc/modules/audio_processing/aec3/echo_canceller3.cc index 3175c5414c..575cfe6bff 100644 --- a/webrtc/modules/audio_processing/aec3/echo_canceller3.cc +++ b/webrtc/modules/audio_processing/aec3/echo_canceller3.cc @@ -11,8 +11,8 @@ #include -#include "webrtc/base/atomicops.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/atomicops.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_canceller3.h b/webrtc/modules/audio_processing/aec3/echo_canceller3.h index 6324cc6bda..d857dfbed5 100644 --- a/webrtc/modules/audio_processing/aec3/echo_canceller3.h +++ b/webrtc/modules/audio_processing/aec3/echo_canceller3.h @@ -11,9 +11,6 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_CANCELLER3_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_CANCELLER3_H_ -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/race_checker.h" -#include "webrtc/base/swap_queue.h" #include "webrtc/modules/audio_processing/aec3/block_framer.h" #include "webrtc/modules/audio_processing/aec3/block_processor.h" #include "webrtc/modules/audio_processing/aec3/cascaded_biquad_filter.h" @@ -21,6 +18,9 @@ #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/race_checker.h" +#include "webrtc/rtc_base/swap_queue.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.cc b/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.cc index be6a2aacc1..8f84f59609 100644 --- a/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.cc +++ b/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.cc @@ -12,10 +12,10 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.h b/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.h index 1129838f70..d392044fb5 100644 --- a/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.h +++ b/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.h @@ -13,12 +13,12 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/decimator_by_4.h" #include "webrtc/modules/audio_processing/aec3/downsampled_render_buffer.h" #include "webrtc/modules/audio_processing/aec3/matched_filter.h" #include "webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator_unittest.cc b/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator_unittest.cc index 7bfadddd4d..aaaf87d7c2 100644 --- a/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator_unittest.cc @@ -14,11 +14,11 @@ #include #include -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/render_delay_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_remover.cc b/webrtc/modules/audio_processing/aec3/echo_remover.cc index 0c6184e3bb..9e1fee10ce 100644 --- a/webrtc/modules/audio_processing/aec3/echo_remover.cc +++ b/webrtc/modules/audio_processing/aec3/echo_remover.cc @@ -15,9 +15,6 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/atomicops.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/aec3/comfort_noise_generator.h" @@ -32,6 +29,9 @@ #include "webrtc/modules/audio_processing/aec3/suppression_filter.h" #include "webrtc/modules/audio_processing/aec3/suppression_gain.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_remover.h b/webrtc/modules/audio_processing/aec3/echo_remover.h index 4704f316bf..ce43fa8a72 100644 --- a/webrtc/modules/audio_processing/aec3/echo_remover.h +++ b/webrtc/modules/audio_processing/aec3/echo_remover.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/echo_path_variability.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_remover_metrics.cc b/webrtc/modules/audio_processing/aec3/echo_remover_metrics.cc index bc7e600cfa..d70e4a121f 100644 --- a/webrtc/modules/audio_processing/aec3/echo_remover_metrics.cc +++ b/webrtc/modules/audio_processing/aec3/echo_remover_metrics.cc @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/safe_minmax.h" +#include "webrtc/rtc_base/safe_minmax.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_remover_metrics.h b/webrtc/modules/audio_processing/aec3/echo_remover_metrics.h index aaca1596d7..57e123ed87 100644 --- a/webrtc/modules/audio_processing/aec3/echo_remover_metrics.h +++ b/webrtc/modules/audio_processing/aec3/echo_remover_metrics.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_REMOVER_METRICS_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_ECHO_REMOVER_METRICS_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec_state.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/echo_remover_unittest.cc b/webrtc/modules/audio_processing/aec3/echo_remover_unittest.cc index d5ffb667df..f2f895d549 100644 --- a/webrtc/modules/audio_processing/aec3/echo_remover_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/echo_remover_unittest.cc @@ -16,12 +16,12 @@ #include #include -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" #include "webrtc/modules/audio_processing/aec3/render_delay_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/erl_estimator.h b/webrtc/modules/audio_processing/aec3/erl_estimator.h index 33eba26536..bc81926209 100644 --- a/webrtc/modules/audio_processing/aec3/erl_estimator.h +++ b/webrtc/modules/audio_processing/aec3/erl_estimator.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/erle_estimator.cc b/webrtc/modules/audio_processing/aec3/erle_estimator.cc index 7faf22cf60..8cdaee56be 100644 --- a/webrtc/modules/audio_processing/aec3/erle_estimator.cc +++ b/webrtc/modules/audio_processing/aec3/erle_estimator.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/safe_minmax.h" +#include "webrtc/rtc_base/safe_minmax.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/erle_estimator.h b/webrtc/modules/audio_processing/aec3/erle_estimator.h index d504ef2876..48bb75a668 100644 --- a/webrtc/modules/audio_processing/aec3/erle_estimator.h +++ b/webrtc/modules/audio_processing/aec3/erle_estimator.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/fft_data.h b/webrtc/modules/audio_processing/aec3/fft_data.h index 5a92d91d62..b5dfe24161 100644 --- a/webrtc/modules/audio_processing/aec3/fft_data.h +++ b/webrtc/modules/audio_processing/aec3/fft_data.h @@ -18,8 +18,8 @@ #include #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/frame_blocker.cc b/webrtc/modules/audio_processing/aec3/frame_blocker.cc index a4e7893489..a8b04d909d 100644 --- a/webrtc/modules/audio_processing/aec3/frame_blocker.cc +++ b/webrtc/modules/audio_processing/aec3/frame_blocker.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/frame_blocker.h b/webrtc/modules/audio_processing/aec3/frame_blocker.h index c4217202d5..7b29071ec9 100644 --- a/webrtc/modules/audio_processing/aec3/frame_blocker.h +++ b/webrtc/modules/audio_processing/aec3/frame_blocker.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/main_filter_update_gain.cc b/webrtc/modules/audio_processing/aec3/main_filter_update_gain.cc index 3c4959c11c..75254ba492 100644 --- a/webrtc/modules/audio_processing/aec3/main_filter_update_gain.cc +++ b/webrtc/modules/audio_processing/aec3/main_filter_update_gain.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/atomicops.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/aec3/main_filter_update_gain.h b/webrtc/modules/audio_processing/aec3/main_filter_update_gain.h index dc6f578f17..5818a106ba 100644 --- a/webrtc/modules/audio_processing/aec3/main_filter_update_gain.h +++ b/webrtc/modules/audio_processing/aec3/main_filter_update_gain.h @@ -14,12 +14,12 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" #include "webrtc/modules/audio_processing/aec3/render_signal_analyzer.h" #include "webrtc/modules/audio_processing/aec3/subtractor_output.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/main_filter_update_gain_unittest.cc b/webrtc/modules/audio_processing/aec3/main_filter_update_gain_unittest.cc index 8b958a5051..fc33e12a6c 100644 --- a/webrtc/modules/audio_processing/aec3/main_filter_update_gain_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/main_filter_update_gain_unittest.cc @@ -14,8 +14,6 @@ #include #include -#include "webrtc/base/random.h" -#include "webrtc/base/safe_minmax.h" #include "webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h" #include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" @@ -24,6 +22,8 @@ #include "webrtc/modules/audio_processing/aec3/subtractor_output.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/safe_minmax.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/matched_filter.h b/webrtc/modules/audio_processing/aec3/matched_filter.h index 91df5c9d32..fd20625594 100644 --- a/webrtc/modules/audio_processing/aec3/matched_filter.h +++ b/webrtc/modules/audio_processing/aec3/matched_filter.h @@ -15,10 +15,10 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/downsampled_render_buffer.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { namespace aec3 { diff --git a/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator.h b/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator.h index 8ce32e2435..983ae3b7f3 100644 --- a/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator.h +++ b/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/matched_filter.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator_unittest.cc b/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator_unittest.cc index a0b86e55a4..1c2e5ab449 100644 --- a/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/matched_filter_lag_aggregator_unittest.cc @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/matched_filter_unittest.cc b/webrtc/modules/audio_processing/aec3/matched_filter_unittest.cc index 02d91bb834..b2978b6bf4 100644 --- a/webrtc/modules/audio_processing/aec3/matched_filter_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/matched_filter_unittest.cc @@ -18,12 +18,12 @@ #include #include -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/decimator_by_4.h" #include "webrtc/modules/audio_processing/aec3/render_delay_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h b/webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h index b016a7f5d5..008fca669f 100644 --- a/webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h +++ b/webrtc/modules/audio_processing/aec3/mock/mock_echo_remover.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/echo_path_variability.h" #include "webrtc/modules/audio_processing/aec3/echo_remover.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/test/gmock.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/mock/mock_render_delay_controller.h b/webrtc/modules/audio_processing/aec3/mock/mock_render_delay_controller.h index bdc1bc5c54..6a00b5e8d2 100644 --- a/webrtc/modules/audio_processing/aec3/mock/mock_render_delay_controller.h +++ b/webrtc/modules/audio_processing/aec3/mock/mock_render_delay_controller.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_MOCK_MOCK_RENDER_DELAY_CONTROLLER_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_MOCK_MOCK_RENDER_DELAY_CONTROLLER_H_ -#include "webrtc/base/array_view.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/downsampled_render_buffer.h" #include "webrtc/modules/audio_processing/aec3/render_delay_controller.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/test/gmock.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/output_selector.cc b/webrtc/modules/audio_processing/aec3/output_selector.cc index 966c35518f..21e24e527b 100644 --- a/webrtc/modules/audio_processing/aec3/output_selector.cc +++ b/webrtc/modules/audio_processing/aec3/output_selector.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/aec3/output_selector.h b/webrtc/modules/audio_processing/aec3/output_selector.h index 505bb3f19e..8876e23802 100644 --- a/webrtc/modules/audio_processing/aec3/output_selector.h +++ b/webrtc/modules/audio_processing/aec3/output_selector.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_OUTPUT_SELECTOR_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_OUTPUT_SELECTOR_H_ -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_buffer.cc b/webrtc/modules/audio_processing/aec3/render_buffer.cc index a3700dd150..2bedfcb639 100644 --- a/webrtc/modules/audio_processing/aec3/render_buffer.cc +++ b/webrtc/modules/audio_processing/aec3/render_buffer.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_buffer.h b/webrtc/modules/audio_processing/aec3/render_buffer.h index c3acdd916f..ba7aa5394d 100644 --- a/webrtc/modules/audio_processing/aec3/render_buffer.h +++ b/webrtc/modules/audio_processing/aec3/render_buffer.h @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_fft.h" #include "webrtc/modules/audio_processing/aec3/fft_data.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_delay_buffer.cc b/webrtc/modules/audio_processing/aec3/render_delay_buffer.cc index 12dae1b8b4..73dadadac6 100644 --- a/webrtc/modules/audio_processing/aec3/render_delay_buffer.cc +++ b/webrtc/modules/audio_processing/aec3/render_delay_buffer.cc @@ -13,13 +13,13 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/block_processor.h" #include "webrtc/modules/audio_processing/aec3/decimator_by_4.h" #include "webrtc/modules/audio_processing/aec3/fft_data.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/aec3/render_delay_buffer.h b/webrtc/modules/audio_processing/aec3/render_delay_buffer.h index 786113802e..17a75da8d0 100644 --- a/webrtc/modules/audio_processing/aec3/render_delay_buffer.h +++ b/webrtc/modules/audio_processing/aec3/render_delay_buffer.h @@ -15,11 +15,11 @@ #include #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/downsampled_render_buffer.h" #include "webrtc/modules/audio_processing/aec3/fft_data.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_delay_buffer_unittest.cc b/webrtc/modules/audio_processing/aec3/render_delay_buffer_unittest.cc index 8ed49eb0a5..4a16fee3b2 100644 --- a/webrtc/modules/audio_processing/aec3/render_delay_buffer_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/render_delay_buffer_unittest.cc @@ -15,10 +15,10 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_delay_controller.cc b/webrtc/modules/audio_processing/aec3/render_delay_controller.cc index 0a64ac203f..06074e2cdb 100644 --- a/webrtc/modules/audio_processing/aec3/render_delay_controller.cc +++ b/webrtc/modules/audio_processing/aec3/render_delay_controller.cc @@ -14,11 +14,11 @@ #include #include -#include "webrtc/base/atomicops.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.h" #include "webrtc/modules/audio_processing/aec3/render_delay_controller_metrics.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_delay_controller.h b/webrtc/modules/audio_processing/aec3/render_delay_controller.h index 469d571ddb..e3a8ee3550 100644 --- a/webrtc/modules/audio_processing/aec3/render_delay_controller.h +++ b/webrtc/modules/audio_processing/aec3/render_delay_controller.h @@ -11,11 +11,11 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RENDER_DELAY_CONTROLLER_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RENDER_DELAY_CONTROLLER_H_ -#include "webrtc/base/array_view.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/downsampled_render_buffer.h" #include "webrtc/modules/audio_processing/aec3/render_delay_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_delay_controller_metrics.h b/webrtc/modules/audio_processing/aec3/render_delay_controller_metrics.h index 9b9ea86437..0cef897c34 100644 --- a/webrtc/modules/audio_processing/aec3/render_delay_controller_metrics.h +++ b/webrtc/modules/audio_processing/aec3/render_delay_controller_metrics.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RENDER_DELAY_CONTROLLER_METRICS_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RENDER_DELAY_CONTROLLER_METRICS_H_ -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_delay_controller_metrics_unittest.cc b/webrtc/modules/audio_processing/aec3/render_delay_controller_metrics_unittest.cc index 2551e8a704..5f24fe3d7f 100644 --- a/webrtc/modules/audio_processing/aec3/render_delay_controller_metrics_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/render_delay_controller_metrics_unittest.cc @@ -8,9 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/optional.h" -#include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/render_delay_controller_metrics.h" +#include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc b/webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc index 164d237b27..af0778bc22 100644 --- a/webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/render_delay_controller_unittest.cc @@ -16,13 +16,13 @@ #include #include -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/block_processor.h" #include "webrtc/modules/audio_processing/aec3/decimator_by_4.h" #include "webrtc/modules/audio_processing/aec3/render_delay_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_signal_analyzer.cc b/webrtc/modules/audio_processing/aec3/render_signal_analyzer.cc index 695ec8407c..fd154e80dd 100644 --- a/webrtc/modules/audio_processing/aec3/render_signal_analyzer.cc +++ b/webrtc/modules/audio_processing/aec3/render_signal_analyzer.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_signal_analyzer.h b/webrtc/modules/audio_processing/aec3/render_signal_analyzer.h index a791f4dee4..9cabea2e66 100644 --- a/webrtc/modules/audio_processing/aec3/render_signal_analyzer.h +++ b/webrtc/modules/audio_processing/aec3/render_signal_analyzer.h @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/render_signal_analyzer_unittest.cc b/webrtc/modules/audio_processing/aec3/render_signal_analyzer_unittest.cc index 9b25f181c1..d6701e2dfa 100644 --- a/webrtc/modules/audio_processing/aec3/render_signal_analyzer_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/render_signal_analyzer_unittest.cc @@ -14,13 +14,13 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/aec3_fft.h" #include "webrtc/modules/audio_processing/aec3/fft_data.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/residual_echo_estimator.cc b/webrtc/modules/audio_processing/aec3/residual_echo_estimator.cc index d36720f651..6ec00e40fa 100644 --- a/webrtc/modules/audio_processing/aec3/residual_echo_estimator.cc +++ b/webrtc/modules/audio_processing/aec3/residual_echo_estimator.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/aec3/residual_echo_estimator.h b/webrtc/modules/audio_processing/aec3/residual_echo_estimator.h index c8e6a28ea7..ea287c0f87 100644 --- a/webrtc/modules/audio_processing/aec3/residual_echo_estimator.h +++ b/webrtc/modules/audio_processing/aec3/residual_echo_estimator.h @@ -15,11 +15,11 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc b/webrtc/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc index 6d34128829..b28cf51797 100644 --- a/webrtc/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/audio_processing/aec3/residual_echo_estimator.h" -#include "webrtc/base/random.h" -#include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/aec3/aec3_fft.h" +#include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain.cc b/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain.cc index 61a1f575b1..6287110e09 100644 --- a/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain.cc +++ b/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain.h b/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain.h index 72218b6608..be1102d12e 100644 --- a/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain.h +++ b/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SHADOW_FILTER_UPDATE_GAIN_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_SHADOW_FILTER_UPDATE_GAIN_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/render_buffer.h" #include "webrtc/modules/audio_processing/aec3/render_signal_analyzer.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain_unittest.cc b/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain_unittest.cc index 47838555c8..1ceb634278 100644 --- a/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/shadow_filter_update_gain_unittest.cc @@ -15,12 +15,12 @@ #include #include -#include "webrtc/base/random.h" -#include "webrtc/base/safe_minmax.h" #include "webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/safe_minmax.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/subtractor.cc b/webrtc/modules/audio_processing/aec3/subtractor.cc index dc3ec0688e..a7bf84d16b 100644 --- a/webrtc/modules/audio_processing/aec3/subtractor.cc +++ b/webrtc/modules/audio_processing/aec3/subtractor.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_minmax.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_minmax.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/subtractor.h b/webrtc/modules/audio_processing/aec3/subtractor.h index a127141be3..c194b2ca1f 100644 --- a/webrtc/modules/audio_processing/aec3/subtractor.h +++ b/webrtc/modules/audio_processing/aec3/subtractor.h @@ -15,7 +15,6 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/aec3_fft.h" @@ -27,6 +26,7 @@ #include "webrtc/modules/audio_processing/aec3/subtractor_output.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" #include "webrtc/modules/audio_processing/utility/ooura_fft.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/subtractor_unittest.cc b/webrtc/modules/audio_processing/aec3/subtractor_unittest.cc index 0c4392332f..a5e2a4e624 100644 --- a/webrtc/modules/audio_processing/aec3/subtractor_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/subtractor_unittest.cc @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/aec3/aec_state.h" #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/suppression_filter.cc b/webrtc/modules/audio_processing/aec3/suppression_filter.cc index 1121c74efe..5ad491151d 100644 --- a/webrtc/modules/audio_processing/aec3/suppression_filter.cc +++ b/webrtc/modules/audio_processing/aec3/suppression_filter.cc @@ -16,8 +16,8 @@ #include #include -#include "webrtc/base/safe_minmax.h" #include "webrtc/modules/audio_processing/utility/ooura_fft.h" +#include "webrtc/rtc_base/safe_minmax.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/aec3/suppression_filter.h b/webrtc/modules/audio_processing/aec3/suppression_filter.h index 4aec2fc861..44ce6beeab 100644 --- a/webrtc/modules/audio_processing/aec3/suppression_filter.h +++ b/webrtc/modules/audio_processing/aec3/suppression_filter.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" #include "webrtc/modules/audio_processing/aec3/aec3_fft.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/suppression_gain.cc b/webrtc/modules/audio_processing/aec3/suppression_gain.cc index 7455d29e16..2f7d7bc22f 100644 --- a/webrtc/modules/audio_processing/aec3/suppression_gain.cc +++ b/webrtc/modules/audio_processing/aec3/suppression_gain.cc @@ -19,8 +19,8 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aec3/vector_math.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/aec3/suppression_gain.h b/webrtc/modules/audio_processing/aec3/suppression_gain.h index c34b804d21..c774c41252 100644 --- a/webrtc/modules/audio_processing/aec3/suppression_gain.h +++ b/webrtc/modules/audio_processing/aec3/suppression_gain.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec3/suppression_gain_unittest.cc b/webrtc/modules/audio_processing/aec3/suppression_gain_unittest.cc index 9a6521c67b..b6d6aaeb2e 100644 --- a/webrtc/modules/audio_processing/aec3/suppression_gain_unittest.cc +++ b/webrtc/modules/audio_processing/aec3/suppression_gain_unittest.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/audio_processing/aec3/suppression_gain.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" #include "webrtc/test/gtest.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_processing/aec3/vector_math.h b/webrtc/modules/audio_processing/aec3/vector_math.h index b943f2bedd..008aa86f96 100644 --- a/webrtc/modules/audio_processing/aec3/vector_math.h +++ b/webrtc/modules/audio_processing/aec3/vector_math.h @@ -23,9 +23,9 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aec3/aec3_common.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace aec3 { diff --git a/webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h b/webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h index 98596a4568..f868572c02 100644 --- a/webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h +++ b/webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/platform_file.h" #include "webrtc/modules/audio_processing/include/aec_dump.h" +#include "webrtc/rtc_base/platform_file.h" namespace rtc { class TaskQueue; diff --git a/webrtc/modules/audio_processing/aec_dump/aec_dump_impl.cc b/webrtc/modules/audio_processing/aec_dump/aec_dump_impl.cc index 9f68b548f9..497a12e974 100644 --- a/webrtc/modules/audio_processing/aec_dump/aec_dump_impl.cc +++ b/webrtc/modules/audio_processing/aec_dump/aec_dump_impl.cc @@ -12,10 +12,10 @@ #include "webrtc/modules/audio_processing/aec_dump/aec_dump_impl.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/event.h" -#include "webrtc/base/ptr_util.h" #include "webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/event.h" +#include "webrtc/rtc_base/ptr_util.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec_dump/aec_dump_impl.h b/webrtc/modules/audio_processing/aec_dump/aec_dump_impl.h index d9da14b979..2109cf5855 100644 --- a/webrtc/modules/audio_processing/aec_dump/aec_dump_impl.h +++ b/webrtc/modules/audio_processing/aec_dump/aec_dump_impl.h @@ -15,15 +15,15 @@ #include #include -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/platform_file.h" -#include "webrtc/base/race_checker.h" -#include "webrtc/base/task_queue.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/audio_processing/aec_dump/capture_stream_info.h" #include "webrtc/modules/audio_processing/aec_dump/write_to_file_task.h" #include "webrtc/modules/audio_processing/include/aec_dump.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/platform_file.h" +#include "webrtc/rtc_base/race_checker.h" +#include "webrtc/rtc_base/task_queue.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/system_wrappers/include/file_wrapper.h" // Files generated at build-time by the protobuf compiler. diff --git a/webrtc/modules/audio_processing/aec_dump/aec_dump_integration_test.cc b/webrtc/modules/audio_processing/aec_dump/aec_dump_integration_test.cc index b1c30ef006..c77cf91923 100644 --- a/webrtc/modules/audio_processing/aec_dump/aec_dump_integration_test.cc +++ b/webrtc/modules/audio_processing/aec_dump/aec_dump_integration_test.cc @@ -10,9 +10,9 @@ #include -#include "webrtc/base/ptr_util.h" #include "webrtc/modules/audio_processing/aec_dump/mock_aec_dump.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/ptr_util.h" using testing::_; using testing::AtLeast; diff --git a/webrtc/modules/audio_processing/aec_dump/aec_dump_unittest.cc b/webrtc/modules/audio_processing/aec_dump/aec_dump_unittest.cc index 3061c23246..d6f361789f 100644 --- a/webrtc/modules/audio_processing/aec_dump/aec_dump_unittest.cc +++ b/webrtc/modules/audio_processing/aec_dump/aec_dump_unittest.cc @@ -12,8 +12,8 @@ #include "webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h" -#include "webrtc/base/task_queue.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/task_queue.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_processing/aec_dump/capture_stream_info.h b/webrtc/modules/audio_processing/aec_dump/capture_stream_info.h index 36b860cea4..cd870206bd 100644 --- a/webrtc/modules/audio_processing/aec_dump/capture_stream_info.h +++ b/webrtc/modules/audio_processing/aec_dump/capture_stream_info.h @@ -15,12 +15,12 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_processing/aec_dump/write_to_file_task.h" #include "webrtc/modules/audio_processing/include/aec_dump.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/logging.h" // Files generated at build-time by the protobuf compiler. RTC_PUSH_IGNORING_WUNDEF() diff --git a/webrtc/modules/audio_processing/aec_dump/write_to_file_task.cc b/webrtc/modules/audio_processing/aec_dump/write_to_file_task.cc index f9aa567a84..f94f57bf5f 100644 --- a/webrtc/modules/audio_processing/aec_dump/write_to_file_task.cc +++ b/webrtc/modules/audio_processing/aec_dump/write_to_file_task.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/audio_processing/aec_dump/write_to_file_task.h" -#include "webrtc/base/protobuf_utils.h" +#include "webrtc/rtc_base/protobuf_utils.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/aec_dump/write_to_file_task.h b/webrtc/modules/audio_processing/aec_dump/write_to_file_task.h index 717f645c23..5f20ed8243 100644 --- a/webrtc/modules/audio_processing/aec_dump/write_to_file_task.h +++ b/webrtc/modules/audio_processing/aec_dump/write_to_file_task.h @@ -15,11 +15,11 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/event.h" -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/platform_file.h" -#include "webrtc/base/task_queue.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/event.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/platform_file.h" +#include "webrtc/rtc_base/task_queue.h" #include "webrtc/system_wrappers/include/file_wrapper.h" // Files generated at build-time by the protobuf compiler. diff --git a/webrtc/modules/audio_processing/aecm/aecm_core.cc b/webrtc/modules/audio_processing/aecm/aecm_core.cc index 97f91a2254..0e0b6ffbfd 100644 --- a/webrtc/modules/audio_processing/aecm/aecm_core.cc +++ b/webrtc/modules/audio_processing/aecm/aecm_core.cc @@ -23,7 +23,7 @@ extern "C" { #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" } -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/typedefs.h" #ifdef AEC_DEBUG diff --git a/webrtc/modules/audio_processing/aecm/aecm_core_c.cc b/webrtc/modules/audio_processing/aecm/aecm_core_c.cc index d868d6a2a5..32f26569f8 100644 --- a/webrtc/modules/audio_processing/aecm/aecm_core_c.cc +++ b/webrtc/modules/audio_processing/aecm/aecm_core_c.cc @@ -23,7 +23,7 @@ extern "C" { #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" } -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/typedefs.h" // Square root of Hanning window in Q14. diff --git a/webrtc/modules/audio_processing/aecm/aecm_core_mips.cc b/webrtc/modules/audio_processing/aecm/aecm_core_mips.cc index 7d898f8cf4..fcd659fee2 100644 --- a/webrtc/modules/audio_processing/aecm/aecm_core_mips.cc +++ b/webrtc/modules/audio_processing/aecm/aecm_core_mips.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/audio_processing/aecm/aecm_core.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aecm/echo_control_mobile.h" #include "webrtc/modules/audio_processing/utility/delay_estimator_wrapper.h" +#include "webrtc/rtc_base/checks.h" static const ALIGN8_BEG int16_t WebRtcAecm_kSqrtHanning[] ALIGN8_END = { 0, 399, 798, 1196, 1594, 1990, 2386, 2780, 3172, diff --git a/webrtc/modules/audio_processing/aecm/aecm_core_neon.cc b/webrtc/modules/audio_processing/aecm/aecm_core_neon.cc index a34bcabfa2..ccf1985d64 100644 --- a/webrtc/modules/audio_processing/aecm/aecm_core_neon.cc +++ b/webrtc/modules/audio_processing/aecm/aecm_core_neon.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/common_audio/signal_processing/include/real_fft.h" +#include "webrtc/rtc_base/checks.h" // TODO(kma): Re-write the corresponding assembly file, the offset // generating script and makefile, to replace these C functions. diff --git a/webrtc/modules/audio_processing/agc/agc.cc b/webrtc/modules/audio_processing/agc/agc.cc index 3eca1483d5..1370d38cc3 100644 --- a/webrtc/modules/audio_processing/agc/agc.cc +++ b/webrtc/modules/audio_processing/agc/agc.cc @@ -16,10 +16,10 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/agc/loudness_histogram.h" #include "webrtc/modules/audio_processing/agc/utility.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/agc/agc_manager_direct.cc b/webrtc/modules/audio_processing/agc/agc_manager_direct.cc index 6a19945f33..0bf5ec8ffc 100644 --- a/webrtc/modules/audio_processing/agc/agc_manager_direct.cc +++ b/webrtc/modules/audio_processing/agc/agc_manager_direct.cc @@ -16,12 +16,12 @@ #include #endif -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_minmax.h" #include "webrtc/modules/audio_processing/agc/gain_map_internal.h" #include "webrtc/modules/audio_processing/gain_control_impl.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_minmax.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/agc/agc_manager_direct.h b/webrtc/modules/audio_processing/agc/agc_manager_direct.h index 578a0f38f7..7a2e3ef77e 100644 --- a/webrtc/modules/audio_processing/agc/agc_manager_direct.h +++ b/webrtc/modules/audio_processing/agc/agc_manager_direct.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/agc/agc.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/agc/loudness_histogram.cc b/webrtc/modules/audio_processing/agc/loudness_histogram.cc index 9112fbbe80..cc21f2ae3d 100644 --- a/webrtc/modules/audio_processing/agc/loudness_histogram.cc +++ b/webrtc/modules/audio_processing/agc/loudness_histogram.cc @@ -13,8 +13,8 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/agc2/digital_gain_applier.h b/webrtc/modules/audio_processing/agc2/digital_gain_applier.h index fb7ecbbb88..d9ad1d935a 100644 --- a/webrtc/modules/audio_processing/agc2/digital_gain_applier.h +++ b/webrtc/modules/audio_processing/agc2/digital_gain_applier.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AGC2_DIGITAL_GAIN_APPLIER_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_AGC2_DIGITAL_GAIN_APPLIER_H_ -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/agc2/gain_controller2.cc b/webrtc/modules/audio_processing/agc2/gain_controller2.cc index d0b1b39b7f..20680f64a8 100644 --- a/webrtc/modules/audio_processing/agc2/gain_controller2.cc +++ b/webrtc/modules/audio_processing/agc2/gain_controller2.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/audio_processing/agc2/gain_controller2.h" -#include "webrtc/base/atomicops.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/agc2/gain_controller2.h b/webrtc/modules/audio_processing/agc2/gain_controller2.h index a385044d08..1a8bb7f39c 100644 --- a/webrtc/modules/audio_processing/agc2/gain_controller2.h +++ b/webrtc/modules/audio_processing/agc2/gain_controller2.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/agc2/digital_gain_applier.h" +#include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/agc2/gain_controller2_unittest.cc b/webrtc/modules/audio_processing/agc2/gain_controller2_unittest.cc index ea945983cd..faa8d169e6 100644 --- a/webrtc/modules/audio_processing/agc2/gain_controller2_unittest.cc +++ b/webrtc/modules/audio_processing/agc2/gain_controller2_unittest.cc @@ -11,10 +11,10 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/modules/audio_processing/audio_buffer.h" -#include "webrtc/modules/audio_processing/agc2/gain_controller2.h" #include "webrtc/modules/audio_processing/agc2/digital_gain_applier.h" +#include "webrtc/modules/audio_processing/agc2/gain_controller2.h" +#include "webrtc/modules/audio_processing/audio_buffer.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/audio_buffer.cc b/webrtc/modules/audio_processing/audio_buffer.cc index 5f90e0f547..6c8ddd6255 100644 --- a/webrtc/modules/audio_processing/audio_buffer.cc +++ b/webrtc/modules/audio_processing/audio_buffer.cc @@ -10,12 +10,12 @@ #include "webrtc/modules/audio_processing/audio_buffer.h" -#include "webrtc/base/checks.h" +#include "webrtc/common_audio/channel_buffer.h" #include "webrtc/common_audio/include/audio_util.h" #include "webrtc/common_audio/resampler/push_sinc_resampler.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" -#include "webrtc/common_audio/channel_buffer.h" #include "webrtc/modules/audio_processing/common.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/audio_processing_impl.cc b/webrtc/modules/audio_processing/audio_processing_impl.cc index 292611e099..f9659b82c4 100644 --- a/webrtc/modules/audio_processing/audio_processing_impl.cc +++ b/webrtc/modules/audio_processing/audio_processing_impl.cc @@ -14,18 +14,14 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/platform_file.h" -#include "webrtc/base/trace_event.h" #include "webrtc/common_audio/audio_converter.h" #include "webrtc/common_audio/channel_buffer.h" #include "webrtc/common_audio/include/audio_util.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_processing/aec/aec_core.h" #include "webrtc/modules/audio_processing/aec3/echo_canceller3.h" -#include "webrtc/modules/audio_processing/agc2/gain_controller2.h" #include "webrtc/modules/audio_processing/agc/agc_manager_direct.h" +#include "webrtc/modules/audio_processing/agc2/gain_controller2.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.h" #include "webrtc/modules/audio_processing/common.h" @@ -33,6 +29,10 @@ #include "webrtc/modules/audio_processing/echo_control_mobile_impl.h" #include "webrtc/modules/audio_processing/gain_control_for_experimental_agc.h" #include "webrtc/modules/audio_processing/gain_control_impl.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/platform_file.h" +#include "webrtc/rtc_base/trace_event.h" #if WEBRTC_INTELLIGIBILITY_ENHANCER #include "webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.h" #endif diff --git a/webrtc/modules/audio_processing/audio_processing_impl.h b/webrtc/modules/audio_processing/audio_processing_impl.h index 4f70bd66b2..4f7b2bb113 100644 --- a/webrtc/modules/audio_processing/audio_processing_impl.h +++ b/webrtc/modules/audio_processing/audio_processing_impl.h @@ -15,18 +15,18 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/function_view.h" -#include "webrtc/base/gtest_prod_util.h" -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/protobuf_utils.h" -#include "webrtc/base/swap_queue.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/include/aec_dump.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/render_queue_item_verifier.h" #include "webrtc/modules/audio_processing/rms_level.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/function_view.h" +#include "webrtc/rtc_base/gtest_prod_util.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/protobuf_utils.h" +#include "webrtc/rtc_base/swap_queue.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/system_wrappers/include/file_wrapper.h" #ifdef WEBRTC_AUDIOPROC_DEBUG_DUMP diff --git a/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc b/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc index 19d90fae11..db2aacbf04 100644 --- a/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc +++ b/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc @@ -14,14 +14,14 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/event.h" -#include "webrtc/base/platform_thread.h" -#include "webrtc/base/random.h" #include "webrtc/config.h" #include "webrtc/modules/audio_processing/test/test_utils.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/event.h" +#include "webrtc/rtc_base/platform_thread.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/sleep.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_processing/audio_processing_performance_unittest.cc b/webrtc/modules/audio_processing/audio_processing_performance_unittest.cc index bf3d5a84d7..a77db01599 100644 --- a/webrtc/modules/audio_processing/audio_processing_performance_unittest.cc +++ b/webrtc/modules/audio_processing/audio_processing_performance_unittest.cc @@ -15,14 +15,14 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/atomicops.h" -#include "webrtc/base/platform_thread.h" -#include "webrtc/base/random.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/config.h" #include "webrtc/modules/audio_processing/test/test_utils.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/platform_thread.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_processing/audio_processing_unittest.cc b/webrtc/modules/audio_processing/audio_processing_unittest.cc index 59fbb914c5..243a140440 100644 --- a/webrtc/modules/audio_processing/audio_processing_unittest.cc +++ b/webrtc/modules/audio_processing/audio_processing_unittest.cc @@ -15,14 +15,6 @@ #include #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/gtest_prod_util.h" -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/protobuf_utils.h" -#include "webrtc/base/safe_minmax.h" -#include "webrtc/base/task_queue.h" -#include "webrtc/base/thread.h" #include "webrtc/common_audio/include/audio_util.h" #include "webrtc/common_audio/resampler/include/push_resampler.h" #include "webrtc/common_audio/resampler/push_sinc_resampler.h" @@ -36,6 +28,14 @@ #include "webrtc/modules/audio_processing/test/protobuf_utils.h" #include "webrtc/modules/audio_processing/test/test_utils.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/gtest_prod_util.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/protobuf_utils.h" +#include "webrtc/rtc_base/safe_minmax.h" +#include "webrtc/rtc_base/task_queue.h" +#include "webrtc/rtc_base/thread.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/system_wrappers/include/trace.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/audio_processing/beamformer/array_util.cc b/webrtc/modules/audio_processing/beamformer/array_util.cc index 244f5c88e8..e42a98e632 100644 --- a/webrtc/modules/audio_processing/beamformer/array_util.cc +++ b/webrtc/modules/audio_processing/beamformer/array_util.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/beamformer/array_util.h b/webrtc/modules/audio_processing/beamformer/array_util.h index f86ad5dee6..bfb9dfdb65 100644 --- a/webrtc/modules/audio_processing/beamformer/array_util.h +++ b/webrtc/modules/audio_processing/beamformer/array_util.h @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/beamformer/complex_matrix.h b/webrtc/modules/audio_processing/beamformer/complex_matrix.h index fe0e24c074..1080f18bb4 100644 --- a/webrtc/modules/audio_processing/beamformer/complex_matrix.h +++ b/webrtc/modules/audio_processing/beamformer/complex_matrix.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/beamformer/matrix.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/beamformer/matrix.h b/webrtc/modules/audio_processing/beamformer/matrix.h index 40b4793426..d0e41ca9b0 100644 --- a/webrtc/modules/audio_processing/beamformer/matrix.h +++ b/webrtc/modules/audio_processing/beamformer/matrix.h @@ -16,8 +16,8 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" namespace { diff --git a/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.cc b/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.cc index de49965c91..b7d23f59f2 100644 --- a/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.cc +++ b/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.cc @@ -17,9 +17,9 @@ #include #include -#include "webrtc/base/arraysize.h" #include "webrtc/common_audio/window_generator.h" #include "webrtc/modules/audio_processing/beamformer/covariance_matrix_generator.h" +#include "webrtc/rtc_base/arraysize.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer_test.cc b/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer_test.cc index 233d406430..3ac68d4435 100644 --- a/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer_test.cc +++ b/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer_test.cc @@ -11,12 +11,12 @@ #include #include "gflags/gflags.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/format_macros.h" #include "webrtc/common_audio/channel_buffer.h" #include "webrtc/common_audio/wav_file.h" #include "webrtc/modules/audio_processing/beamformer/nonlinear_beamformer.h" #include "webrtc/modules/audio_processing/test/test_utils.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" DEFINE_string(i, "", "The name of the input file to read from."); DEFINE_string(o, "out.wav", "Name of the output file to write to."); diff --git a/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer_unittest.cc b/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer_unittest.cc index 7983d71555..c81d76cc27 100644 --- a/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer_unittest.cc +++ b/webrtc/modules/audio_processing/beamformer/nonlinear_beamformer_unittest.cc @@ -15,10 +15,10 @@ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/common.h b/webrtc/modules/audio_processing/common.h index 184e2a5511..30cee9403a 100644 --- a/webrtc/modules/audio_processing/common.h +++ b/webrtc/modules/audio_processing/common.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_COMMON_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_COMMON_H_ -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/echo_cancellation_bit_exact_unittest.cc b/webrtc/modules/audio_processing/echo_cancellation_bit_exact_unittest.cc index 93eaa04b9f..a4bc4f6108 100644 --- a/webrtc/modules/audio_processing/echo_cancellation_bit_exact_unittest.cc +++ b/webrtc/modules/audio_processing/echo_cancellation_bit_exact_unittest.cc @@ -9,11 +9,11 @@ */ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/echo_cancellation_impl.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/echo_cancellation_impl.cc b/webrtc/modules/audio_processing/echo_cancellation_impl.cc index 9918bb4738..b1ea486df1 100644 --- a/webrtc/modules/audio_processing/echo_cancellation_impl.cc +++ b/webrtc/modules/audio_processing/echo_cancellation_impl.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/aec/aec_core.h" #include "webrtc/modules/audio_processing/aec/echo_cancellation.h" #include "webrtc/modules/audio_processing/audio_buffer.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/echo_cancellation_impl.h b/webrtc/modules/audio_processing/echo_cancellation_impl.h index 19da98196e..2bce6332d4 100644 --- a/webrtc/modules/audio_processing/echo_cancellation_impl.h +++ b/webrtc/modules/audio_processing/echo_cancellation_impl.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/echo_control_mobile_impl.cc b/webrtc/modules/audio_processing/echo_control_mobile_impl.cc index 0eb688d75a..4104a7f259 100644 --- a/webrtc/modules/audio_processing/echo_control_mobile_impl.cc +++ b/webrtc/modules/audio_processing/echo_control_mobile_impl.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_processing/aecm/echo_control_mobile.h" #include "webrtc/modules/audio_processing/audio_buffer.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/echo_control_mobile_impl.h b/webrtc/modules/audio_processing/echo_control_mobile_impl.h index 571de36add..2c604ca0d9 100644 --- a/webrtc/modules/audio_processing/echo_control_mobile_impl.h +++ b/webrtc/modules/audio_processing/echo_control_mobile_impl.h @@ -14,11 +14,11 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/swap_queue.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/render_queue_item_verifier.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/swap_queue.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/echo_control_mobile_unittest.cc b/webrtc/modules/audio_processing/echo_control_mobile_unittest.cc index 253421a13c..aa4ad3cec9 100644 --- a/webrtc/modules/audio_processing/echo_control_mobile_unittest.cc +++ b/webrtc/modules/audio_processing/echo_control_mobile_unittest.cc @@ -9,11 +9,11 @@ */ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/echo_control_mobile_impl.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/echo_detector/circular_buffer.cc b/webrtc/modules/audio_processing/echo_detector/circular_buffer.cc index c67be05416..a24fc3e67a 100644 --- a/webrtc/modules/audio_processing/echo_detector/circular_buffer.cc +++ b/webrtc/modules/audio_processing/echo_detector/circular_buffer.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/echo_detector/circular_buffer.h b/webrtc/modules/audio_processing/echo_detector/circular_buffer.h index 667b1f8824..9fadb0d66f 100644 --- a/webrtc/modules/audio_processing/echo_detector/circular_buffer.h +++ b/webrtc/modules/audio_processing/echo_detector/circular_buffer.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc b/webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc index f0de0f09fe..e6e29e5ddb 100644 --- a/webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc +++ b/webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/echo_detector/moving_max.cc b/webrtc/modules/audio_processing/echo_detector/moving_max.cc index 699a0254fc..9c37ab63ff 100644 --- a/webrtc/modules/audio_processing/echo_detector/moving_max.cc +++ b/webrtc/modules/audio_processing/echo_detector/moving_max.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/audio_processing/echo_detector/moving_max.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/echo_detector/normalized_covariance_estimator.cc b/webrtc/modules/audio_processing/echo_detector/normalized_covariance_estimator.cc index 8408f01404..24e1810197 100644 --- a/webrtc/modules/audio_processing/echo_detector/normalized_covariance_estimator.cc +++ b/webrtc/modules/audio_processing/echo_detector/normalized_covariance_estimator.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/gain_control_for_experimental_agc.cc b/webrtc/modules/audio_processing/gain_control_for_experimental_agc.cc index f8063865b6..308ee1224e 100644 --- a/webrtc/modules/audio_processing/gain_control_for_experimental_agc.cc +++ b/webrtc/modules/audio_processing/gain_control_for_experimental_agc.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/audio_processing/gain_control_for_experimental_agc.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/gain_control_for_experimental_agc.h b/webrtc/modules/audio_processing/gain_control_for_experimental_agc.h index 75d87d17c3..977685bb1b 100644 --- a/webrtc/modules/audio_processing/gain_control_for_experimental_agc.h +++ b/webrtc/modules/audio_processing/gain_control_for_experimental_agc.h @@ -11,11 +11,11 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_GAIN_CONTROL_FOR_EXPERIMENTAL_AGC_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_GAIN_CONTROL_FOR_EXPERIMENTAL_AGC_H_ -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/audio_processing/agc/agc_manager_direct.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/gain_control_impl.cc b/webrtc/modules/audio_processing/gain_control_impl.cc index ce0872e883..e5760183f0 100644 --- a/webrtc/modules/audio_processing/gain_control_impl.cc +++ b/webrtc/modules/audio_processing/gain_control_impl.cc @@ -10,11 +10,11 @@ #include "webrtc/modules/audio_processing/gain_control_impl.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" -#include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/agc/legacy/gain_control.h" +#include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/gain_control_impl.h b/webrtc/modules/audio_processing/gain_control_impl.h index bd56ed452d..03bb5fa7d2 100644 --- a/webrtc/modules/audio_processing/gain_control_impl.h +++ b/webrtc/modules/audio_processing/gain_control_impl.h @@ -14,12 +14,12 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/swap_queue.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/render_queue_item_verifier.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/swap_queue.h" +#include "webrtc/rtc_base/thread_annotations.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/gain_control_unittest.cc b/webrtc/modules/audio_processing/gain_control_unittest.cc index 1c89d76f52..e047c10d2e 100644 --- a/webrtc/modules/audio_processing/gain_control_unittest.cc +++ b/webrtc/modules/audio_processing/gain_control_unittest.cc @@ -9,11 +9,11 @@ */ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/gain_control_impl.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/include/aec_dump.h b/webrtc/modules/audio_processing/include/aec_dump.h index 2640f07284..84bba85939 100644 --- a/webrtc/modules/audio_processing/include/aec_dump.h +++ b/webrtc/modules/audio_processing/include/aec_dump.h @@ -15,7 +15,7 @@ #include #include -#include "webrtc/base/array_view.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/include/audio_processing.cc b/webrtc/modules/audio_processing/include/audio_processing.cc index 52a57aa6e7..2c4b61f914 100644 --- a/webrtc/modules/audio_processing/include/audio_processing.cc +++ b/webrtc/modules/audio_processing/include/audio_processing.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/audio_processing/include/audio_processing.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/include/audio_processing.h b/webrtc/modules/audio_processing/include/audio_processing.h index 6dc6e3fc76..9b62b14864 100644 --- a/webrtc/modules/audio_processing/include/audio_processing.h +++ b/webrtc/modules/audio_processing/include/audio_processing.h @@ -19,11 +19,11 @@ #include // FILE #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/platform_file.h" -#include "webrtc/base/refcount.h" #include "webrtc/modules/audio_processing/beamformer/array_util.h" #include "webrtc/modules/audio_processing/include/config.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/platform_file.h" +#include "webrtc/rtc_base/refcount.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/include/config.h b/webrtc/modules/audio_processing/include/config.h index 0473d2d8cb..35836e8636 100644 --- a/webrtc/modules/audio_processing/include/config.h +++ b/webrtc/modules/audio_processing/include/config.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc b/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc index f5414aa878..817d9ddff4 100644 --- a/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc +++ b/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.cc @@ -16,11 +16,11 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_minmax.h" #include "webrtc/common_audio/include/audio_util.h" #include "webrtc/common_audio/window_generator.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_minmax.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.h b/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.h index f7306cb6a0..8faf919920 100644 --- a/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.h +++ b/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.h @@ -15,13 +15,13 @@ #include #include -#include "webrtc/base/swap_queue.h" #include "webrtc/common_audio/channel_buffer.h" #include "webrtc/common_audio/lapped_transform.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/intelligibility/intelligibility_utils.h" #include "webrtc/modules/audio_processing/render_queue_item_verifier.h" #include "webrtc/modules/audio_processing/vad/voice_activity_detector.h" +#include "webrtc/rtc_base/swap_queue.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer_unittest.cc b/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer_unittest.cc index 0f9467cbe4..e84568735c 100644 --- a/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer_unittest.cc +++ b/webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer_unittest.cc @@ -15,14 +15,14 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/arraysize.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.h" #include "webrtc/modules/audio_processing/noise_suppression_impl.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/arraysize.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/intelligibility/intelligibility_utils.cc b/webrtc/modules/audio_processing/intelligibility/intelligibility_utils.cc index deaeb27f44..3e6c93e192 100644 --- a/webrtc/modules/audio_processing/intelligibility/intelligibility_utils.cc +++ b/webrtc/modules/audio_processing/intelligibility/intelligibility_utils.cc @@ -16,7 +16,7 @@ #include #include -#include "webrtc/base/safe_minmax.h" +#include "webrtc/rtc_base/safe_minmax.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/intelligibility/intelligibility_utils_unittest.cc b/webrtc/modules/audio_processing/intelligibility/intelligibility_utils_unittest.cc index b7c212d956..4687c924d8 100644 --- a/webrtc/modules/audio_processing/intelligibility/intelligibility_utils_unittest.cc +++ b/webrtc/modules/audio_processing/intelligibility/intelligibility_utils_unittest.cc @@ -12,8 +12,8 @@ #include #include -#include "webrtc/base/arraysize.h" #include "webrtc/modules/audio_processing/intelligibility/intelligibility_utils.h" +#include "webrtc/rtc_base/arraysize.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/intelligibility/test/intelligibility_proc.cc b/webrtc/modules/audio_processing/intelligibility/test/intelligibility_proc.cc index ddcf1674f9..cd76a9557a 100644 --- a/webrtc/modules/audio_processing/intelligibility/test/intelligibility_proc.cc +++ b/webrtc/modules/audio_processing/intelligibility/test/intelligibility_proc.cc @@ -9,13 +9,13 @@ */ #include "gflags/gflags.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/common_audio/channel_buffer.h" #include "webrtc/common_audio/include/audio_util.h" #include "webrtc/common_audio/wav_file.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/intelligibility/intelligibility_enhancer.h" #include "webrtc/modules/audio_processing/noise_suppression_impl.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/test/gtest.h" using std::complex; diff --git a/webrtc/modules/audio_processing/level_controller/biquad_filter.h b/webrtc/modules/audio_processing/level_controller/biquad_filter.h index 7e073b6f56..62bacf2018 100644 --- a/webrtc/modules/audio_processing/level_controller/biquad_filter.h +++ b/webrtc/modules/audio_processing/level_controller/biquad_filter.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/arraysize.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/down_sampler.cc b/webrtc/modules/audio_processing/level_controller/down_sampler.cc index f4a08ee346..09da95bfbc 100644 --- a/webrtc/modules/audio_processing/level_controller/down_sampler.cc +++ b/webrtc/modules/audio_processing/level_controller/down_sampler.cc @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/level_controller/biquad_filter.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/level_controller/down_sampler.h b/webrtc/modules/audio_processing/level_controller/down_sampler.h index 5c8aaf3dee..95e3248054 100644 --- a/webrtc/modules/audio_processing/level_controller/down_sampler.h +++ b/webrtc/modules/audio_processing/level_controller/down_sampler.h @@ -11,9 +11,9 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_DOWN_SAMPLER_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_DOWN_SAMPLER_H_ -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/level_controller/biquad_filter.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/gain_applier.cc b/webrtc/modules/audio_processing/level_controller/gain_applier.cc index d646861328..9e2fba0c23 100644 --- a/webrtc/modules/audio_processing/level_controller/gain_applier.cc +++ b/webrtc/modules/audio_processing/level_controller/gain_applier.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" diff --git a/webrtc/modules/audio_processing/level_controller/gain_applier.h b/webrtc/modules/audio_processing/level_controller/gain_applier.h index 2fc3543f84..33e26c1e0a 100644 --- a/webrtc/modules/audio_processing/level_controller/gain_applier.h +++ b/webrtc/modules/audio_processing/level_controller/gain_applier.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_GAIN_APPLIER_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_GAIN_APPLIER_H_ -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/gain_selector.cc b/webrtc/modules/audio_processing/level_controller/gain_selector.cc index cf90d8d26b..844b8de02e 100644 --- a/webrtc/modules/audio_processing/level_controller/gain_selector.cc +++ b/webrtc/modules/audio_processing/level_controller/gain_selector.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/level_controller/level_controller_constants.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/gain_selector.h b/webrtc/modules/audio_processing/level_controller/gain_selector.h index 78b9101500..690d49bace 100644 --- a/webrtc/modules/audio_processing/level_controller/gain_selector.h +++ b/webrtc/modules/audio_processing/level_controller/gain_selector.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_GAIN_SELECTOR_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_GAIN_SELECTOR_H_ -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/modules/audio_processing/level_controller/signal_classifier.h" diff --git a/webrtc/modules/audio_processing/level_controller/level_controller.cc b/webrtc/modules/audio_processing/level_controller/level_controller.cc index 3d36940187..bc6b7069cc 100644 --- a/webrtc/modules/audio_processing/level_controller/level_controller.cc +++ b/webrtc/modules/audio_processing/level_controller/level_controller.cc @@ -14,10 +14,6 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/level_controller/gain_applier.h" #include "webrtc/modules/audio_processing/level_controller/gain_selector.h" @@ -26,6 +22,10 @@ #include "webrtc/modules/audio_processing/level_controller/saturating_gain_estimator.h" #include "webrtc/modules/audio_processing/level_controller/signal_classifier.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/level_controller.h b/webrtc/modules/audio_processing/level_controller/level_controller.h index 1030f7952e..e04620f19c 100644 --- a/webrtc/modules/audio_processing/level_controller/level_controller.h +++ b/webrtc/modules/audio_processing/level_controller/level_controller.h @@ -14,8 +14,6 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/level_controller/gain_applier.h" #include "webrtc/modules/audio_processing/level_controller/gain_selector.h" @@ -23,6 +21,8 @@ #include "webrtc/modules/audio_processing/level_controller/peak_level_estimator.h" #include "webrtc/modules/audio_processing/level_controller/saturating_gain_estimator.h" #include "webrtc/modules/audio_processing/level_controller/signal_classifier.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/level_controller_complexity_unittest.cc b/webrtc/modules/audio_processing/level_controller/level_controller_complexity_unittest.cc index 6d12a0e2b1..194c6d3fd1 100644 --- a/webrtc/modules/audio_processing/level_controller/level_controller_complexity_unittest.cc +++ b/webrtc/modules/audio_processing/level_controller/level_controller_complexity_unittest.cc @@ -11,8 +11,6 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/level_controller/level_controller.h" @@ -20,6 +18,8 @@ #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" #include "webrtc/modules/audio_processing/test/performance_timer.h" #include "webrtc/modules/audio_processing/test/simulator_buffers.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/perf_test.h" diff --git a/webrtc/modules/audio_processing/level_controller/level_controller_unittest.cc b/webrtc/modules/audio_processing/level_controller/level_controller_unittest.cc index 3c07cb6dcb..633bfaf1ad 100644 --- a/webrtc/modules/audio_processing/level_controller/level_controller_unittest.cc +++ b/webrtc/modules/audio_processing/level_controller/level_controller_unittest.cc @@ -10,13 +10,13 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/level_controller/level_controller.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/noise_level_estimator.h b/webrtc/modules/audio_processing/level_controller/noise_level_estimator.h index 235b139dfb..017ecc2cd6 100644 --- a/webrtc/modules/audio_processing/level_controller/noise_level_estimator.h +++ b/webrtc/modules/audio_processing/level_controller/noise_level_estimator.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_NOISE_LEVEL_ESTIMATOR_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_NOISE_LEVEL_ESTIMATOR_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/level_controller/signal_classifier.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.cc b/webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.cc index 2fbe200fa7..44ef82007b 100644 --- a/webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.cc +++ b/webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/arraysize.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/arraysize.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.h b/webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.h index 4bf81e39fe..11029666a5 100644 --- a/webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.h +++ b/webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_NOISE_SPECTRUM_ESTIMATOR_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_NOISE_SPECTRUM_ESTIMATOR_H_ -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/peak_level_estimator.h b/webrtc/modules/audio_processing/level_controller/peak_level_estimator.h index f908717445..23c10060a8 100644 --- a/webrtc/modules/audio_processing/level_controller/peak_level_estimator.h +++ b/webrtc/modules/audio_processing/level_controller/peak_level_estimator.h @@ -11,9 +11,9 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_PEAK_LEVEL_ESTIMATOR_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_PEAK_LEVEL_ESTIMATOR_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/level_controller/level_controller_constants.h" #include "webrtc/modules/audio_processing/level_controller/signal_classifier.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/saturating_gain_estimator.h b/webrtc/modules/audio_processing/level_controller/saturating_gain_estimator.h index 1ec723de13..35275f32d7 100644 --- a/webrtc/modules/audio_processing/level_controller/saturating_gain_estimator.h +++ b/webrtc/modules/audio_processing/level_controller/saturating_gain_estimator.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_SATURATING_GAIN_ESTIMATOR_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_SATURATING_GAIN_ESTIMATOR_H_ -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_controller/signal_classifier.cc b/webrtc/modules/audio_processing/level_controller/signal_classifier.cc index 59cdc34c18..98686ac028 100644 --- a/webrtc/modules/audio_processing/level_controller/signal_classifier.cc +++ b/webrtc/modules/audio_processing/level_controller/signal_classifier.cc @@ -14,12 +14,12 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/level_controller/down_sampler.h" #include "webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/level_controller/signal_classifier.h b/webrtc/modules/audio_processing/level_controller/signal_classifier.h index 8c791fec7e..5e0749a6fe 100644 --- a/webrtc/modules/audio_processing/level_controller/signal_classifier.h +++ b/webrtc/modules/audio_processing/level_controller/signal_classifier.h @@ -14,11 +14,11 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/level_controller/down_sampler.h" #include "webrtc/modules/audio_processing/level_controller/noise_spectrum_estimator.h" #include "webrtc/modules/audio_processing/utility/ooura_fft.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_estimator_impl.cc b/webrtc/modules/audio_processing/level_estimator_impl.cc index 4a402a1ead..1e52728bc8 100644 --- a/webrtc/modules/audio_processing/level_estimator_impl.cc +++ b/webrtc/modules/audio_processing/level_estimator_impl.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/audio_processing/level_estimator_impl.h" -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/rms_level.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_estimator_impl.h b/webrtc/modules/audio_processing/level_estimator_impl.h index 11dbdbe587..db7217493d 100644 --- a/webrtc/modules/audio_processing/level_estimator_impl.h +++ b/webrtc/modules/audio_processing/level_estimator_impl.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/level_estimator_unittest.cc b/webrtc/modules/audio_processing/level_estimator_unittest.cc index 2675e0a4ce..cdb9c4eef2 100644 --- a/webrtc/modules/audio_processing/level_estimator_unittest.cc +++ b/webrtc/modules/audio_processing/level_estimator_unittest.cc @@ -9,11 +9,11 @@ */ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/level_estimator_impl.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/logging/apm_data_dumper.cc b/webrtc/modules/audio_processing/logging/apm_data_dumper.cc index 66ec5178d0..719dd050af 100644 --- a/webrtc/modules/audio_processing/logging/apm_data_dumper.cc +++ b/webrtc/modules/audio_processing/logging/apm_data_dumper.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/stringutils.h" +#include "webrtc/rtc_base/stringutils.h" // Check to verify that the define is properly set. #if !defined(WEBRTC_APM_DEBUG_DUMP) || \ diff --git a/webrtc/modules/audio_processing/logging/apm_data_dumper.h b/webrtc/modules/audio_processing/logging/apm_data_dumper.h index e342fab365..82dc122e34 100644 --- a/webrtc/modules/audio_processing/logging/apm_data_dumper.h +++ b/webrtc/modules/audio_processing/logging/apm_data_dumper.h @@ -17,9 +17,9 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/wav_file.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" // Check to verify that the define is properly set. #if !defined(WEBRTC_APM_DEBUG_DUMP) || \ diff --git a/webrtc/modules/audio_processing/low_cut_filter.h b/webrtc/modules/audio_processing/low_cut_filter.h index 3a4da71d8b..047bcac1ac 100644 --- a/webrtc/modules/audio_processing/low_cut_filter.h +++ b/webrtc/modules/audio_processing/low_cut_filter.h @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/low_cut_filter_unittest.cc b/webrtc/modules/audio_processing/low_cut_filter_unittest.cc index 0273472c03..736f0dc7ab 100644 --- a/webrtc/modules/audio_processing/low_cut_filter_unittest.cc +++ b/webrtc/modules/audio_processing/low_cut_filter_unittest.cc @@ -9,11 +9,11 @@ */ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/low_cut_filter.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/noise_suppression_impl.cc b/webrtc/modules/audio_processing/noise_suppression_impl.cc index 628b951f57..37af1032ab 100644 --- a/webrtc/modules/audio_processing/noise_suppression_impl.cc +++ b/webrtc/modules/audio_processing/noise_suppression_impl.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/audio_processing/noise_suppression_impl.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/audio_buffer.h" +#include "webrtc/rtc_base/constructormagic.h" #if defined(WEBRTC_NS_FLOAT) #include "webrtc/modules/audio_processing/ns/noise_suppression.h" #define NS_CREATE WebRtcNs_Create diff --git a/webrtc/modules/audio_processing/noise_suppression_impl.h b/webrtc/modules/audio_processing/noise_suppression_impl.h index 111e8e17b6..ac5909fd8b 100644 --- a/webrtc/modules/audio_processing/noise_suppression_impl.h +++ b/webrtc/modules/audio_processing/noise_suppression_impl.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/noise_suppression_unittest.cc b/webrtc/modules/audio_processing/noise_suppression_unittest.cc index 78c3cc52ae..835d396585 100644 --- a/webrtc/modules/audio_processing/noise_suppression_unittest.cc +++ b/webrtc/modules/audio_processing/noise_suppression_unittest.cc @@ -9,11 +9,11 @@ */ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/noise_suppression_impl.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/residual_echo_detector.cc b/webrtc/modules/audio_processing/residual_echo_detector.cc index c73911ce0e..67bf4a1f99 100644 --- a/webrtc/modules/audio_processing/residual_echo_detector.cc +++ b/webrtc/modules/audio_processing/residual_echo_detector.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/atomicops.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/metrics.h" namespace { diff --git a/webrtc/modules/audio_processing/residual_echo_detector.h b/webrtc/modules/audio_processing/residual_echo_detector.h index 92dd71db8a..8ac25fb0e4 100644 --- a/webrtc/modules/audio_processing/residual_echo_detector.h +++ b/webrtc/modules/audio_processing/residual_echo_detector.h @@ -13,11 +13,11 @@ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/echo_detector/circular_buffer.h" #include "webrtc/modules/audio_processing/echo_detector/mean_variance_estimator.h" #include "webrtc/modules/audio_processing/echo_detector/moving_max.h" #include "webrtc/modules/audio_processing/echo_detector/normalized_covariance_estimator.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/residual_echo_detector_complexity_unittest.cc b/webrtc/modules/audio_processing/residual_echo_detector_complexity_unittest.cc index a42b408b8b..57a465a85a 100644 --- a/webrtc/modules/audio_processing/residual_echo_detector_complexity_unittest.cc +++ b/webrtc/modules/audio_processing/residual_echo_detector_complexity_unittest.cc @@ -11,14 +11,14 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/residual_echo_detector.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/performance_timer.h" #include "webrtc/modules/audio_processing/test/simulator_buffers.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/perf_test.h" diff --git a/webrtc/modules/audio_processing/rms_level.cc b/webrtc/modules/audio_processing/rms_level.cc index 8a77b3f7d9..391843cb6f 100644 --- a/webrtc/modules/audio_processing/rms_level.cc +++ b/webrtc/modules/audio_processing/rms_level.cc @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/rms_level.h b/webrtc/modules/audio_processing/rms_level.h index a186bcf608..4701e0ce1c 100644 --- a/webrtc/modules/audio_processing/rms_level.h +++ b/webrtc/modules/audio_processing/rms_level.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_RMS_LEVEL_H_ #define WEBRTC_MODULES_AUDIO_PROCESSING_RMS_LEVEL_H_ -#include "webrtc/base/array_view.h" -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/rms_level_unittest.cc b/webrtc/modules/audio_processing/rms_level_unittest.cc index cf0fd4d739..89338eafa7 100644 --- a/webrtc/modules/audio_processing/rms_level_unittest.cc +++ b/webrtc/modules/audio_processing/rms_level_unittest.cc @@ -11,11 +11,11 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/mathutils.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/audio_processing/rms_level.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/mathutils.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/splitting_filter.cc b/webrtc/modules/audio_processing/splitting_filter.cc index 9f10935699..203201ebe3 100644 --- a/webrtc/modules/audio_processing/splitting_filter.cc +++ b/webrtc/modules/audio_processing/splitting_filter.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/audio_processing/splitting_filter.h" -#include "webrtc/base/checks.h" -#include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" #include "webrtc/common_audio/channel_buffer.h" +#include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc b/webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc index 4a5ada53c0..c2e262ae6f 100644 --- a/webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc +++ b/webrtc/modules/audio_processing/test/aec_dump_based_simulator.cc @@ -12,8 +12,8 @@ #include "webrtc/modules/audio_processing/test/aec_dump_based_simulator.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/test/protobuf_utils.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/testsupport/trace_to_stderr.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/aec_dump_based_simulator.h b/webrtc/modules/audio_processing/test/aec_dump_based_simulator.h index 5f7d138aa4..3fb1d5528f 100644 --- a/webrtc/modules/audio_processing/test/aec_dump_based_simulator.h +++ b/webrtc/modules/audio_processing/test/aec_dump_based_simulator.h @@ -13,8 +13,8 @@ #include "webrtc/modules/audio_processing/test/audio_processing_simulator.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/ignore_wundef.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/ignore_wundef.h" RTC_PUSH_IGNORING_WUNDEF() #ifdef WEBRTC_ANDROID_PLATFORM_BUILD diff --git a/webrtc/modules/audio_processing/test/audio_buffer_tools.h b/webrtc/modules/audio_processing/test/audio_buffer_tools.h index 1fac758c59..f35e9a795f 100644 --- a/webrtc/modules/audio_processing/test/audio_buffer_tools.h +++ b/webrtc/modules/audio_processing/test/audio_buffer_tools.h @@ -12,9 +12,9 @@ #define WEBRTC_MODULES_AUDIO_PROCESSING_TEST_AUDIO_BUFFER_TOOLS_H_ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/audio_processing_simulator.cc b/webrtc/modules/audio_processing/test/audio_processing_simulator.cc index 35e2d2c4d8..461fc71c5e 100644 --- a/webrtc/modules/audio_processing/test/audio_processing_simulator.cc +++ b/webrtc/modules/audio_processing/test/audio_processing_simulator.cc @@ -16,11 +16,11 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/stringutils.h" #include "webrtc/common_audio/include/audio_util.h" #include "webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/stringutils.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/audio_processing_simulator.h b/webrtc/modules/audio_processing/test/audio_processing_simulator.h index 1b838d9770..1ae465cbef 100644 --- a/webrtc/modules/audio_processing/test/audio_processing_simulator.h +++ b/webrtc/modules/audio_processing/test/audio_processing_simulator.h @@ -17,13 +17,13 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/task_queue.h" -#include "webrtc/base/timeutils.h" #include "webrtc/common_audio/channel_buffer.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/audio_processing/test/test_utils.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/task_queue.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/bitexactness_tools.cc b/webrtc/modules/audio_processing/test/bitexactness_tools.cc index 9c8a97ce0c..ae3d2163e4 100644 --- a/webrtc/modules/audio_processing/test/bitexactness_tools.cc +++ b/webrtc/modules/audio_processing/test/bitexactness_tools.cc @@ -15,7 +15,7 @@ #include #include -#include "webrtc/base/array_view.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/testsupport/fileutils.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/bitexactness_tools.h b/webrtc/modules/audio_processing/test/bitexactness_tools.h index 4ddc7e3bae..e4b863ac31 100644 --- a/webrtc/modules/audio_processing/test/bitexactness_tools.h +++ b/webrtc/modules/audio_processing/test/bitexactness_tools.h @@ -14,8 +14,8 @@ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_coding/neteq/tools/input_audio_file.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/generator.cc b/webrtc/modules/audio_processing/test/conversational_speech/generator.cc index 57996c14a4..c7f86dec1e 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/generator.cc +++ b/webrtc/modules/audio_processing/test/conversational_speech/generator.cc @@ -11,12 +11,12 @@ #include #include "gflags/gflags.h" -#include "webrtc/base/ptr_util.h" #include "webrtc/modules/audio_processing/test/conversational_speech/config.h" -#include "webrtc/modules/audio_processing/test/conversational_speech/timing.h" -#include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.h" #include "webrtc/modules/audio_processing/test/conversational_speech/multiend_call.h" #include "webrtc/modules/audio_processing/test/conversational_speech/simulator.h" +#include "webrtc/modules/audio_processing/test/conversational_speech/timing.h" +#include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.h" +#include "webrtc/rtc_base/ptr_util.h" #include "webrtc/test/testsupport/fileutils.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/generator_unittest.cc b/webrtc/modules/audio_processing/test/conversational_speech/generator_unittest.cc index c38fc435c5..9a52e5cc1f 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/generator_unittest.cc +++ b/webrtc/modules/audio_processing/test/conversational_speech/generator_unittest.cc @@ -42,9 +42,6 @@ #include #include -#include "webrtc/base/logging.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/pathutils.h" #include "webrtc/common_audio/wav_file.h" #include "webrtc/modules/audio_processing/test/conversational_speech/config.h" #include "webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader_factory.h" @@ -52,6 +49,9 @@ #include "webrtc/modules/audio_processing/test/conversational_speech/simulator.h" #include "webrtc/modules/audio_processing/test/conversational_speech/timing.h" #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/pathutils.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h b/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h index 98dfaa27e8..a49ba2c74d 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h +++ b/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_interface.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gmock.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader_factory.cc b/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader_factory.cc index 2dd21dadf1..0483a33cec 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader_factory.cc +++ b/webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader_factory.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader_factory.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/pathutils.h" #include "webrtc/modules/audio_processing/test/conversational_speech/mock_wavreader.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/pathutils.h" #include "webrtc/test/gmock.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/multiend_call.cc b/webrtc/modules/audio_processing/test/conversational_speech/multiend_call.cc index f83923cb15..dffbfcbe1e 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/multiend_call.cc +++ b/webrtc/modules/audio_processing/test/conversational_speech/multiend_call.cc @@ -13,8 +13,8 @@ #include #include -#include "webrtc/base/logging.h" -#include "webrtc/base/pathutils.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/pathutils.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/multiend_call.h b/webrtc/modules/audio_processing/test/conversational_speech/multiend_call.h index 1daeea0279..b28dc9b01f 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/multiend_call.h +++ b/webrtc/modules/audio_processing/test/conversational_speech/multiend_call.h @@ -19,11 +19,11 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/test/conversational_speech/timing.h" #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_abstract_factory.h" #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_interface.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/simulator.cc b/webrtc/modules/audio_processing/test/conversational_speech/simulator.cc index 705b1df847..cb4bcfa7b8 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/simulator.cc +++ b/webrtc/modules/audio_processing/test/conversational_speech/simulator.cc @@ -14,13 +14,13 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/pathutils.h" -#include "webrtc/base/ptr_util.h" #include "webrtc/common_audio/wav_file.h" #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_interface.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/pathutils.h" +#include "webrtc/rtc_base/ptr_util.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/simulator.h b/webrtc/modules/audio_processing/test/conversational_speech/simulator.h index 6224162c25..6882cca124 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/simulator.h +++ b/webrtc/modules/audio_processing/test/conversational_speech/simulator.h @@ -16,8 +16,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/audio_processing/test/conversational_speech/multiend_call.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/timing.cc b/webrtc/modules/audio_processing/test/conversational_speech/timing.cc index 53076f1cac..59ca867f25 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/timing.cc +++ b/webrtc/modules/audio_processing/test/conversational_speech/timing.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/stringencode.h" +#include "webrtc/rtc_base/stringencode.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/timing.h b/webrtc/modules/audio_processing/test/conversational_speech/timing.h index 6498e79588..43a533cd0c 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/timing.h +++ b/webrtc/modules/audio_processing/test/conversational_speech/timing.h @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/array_view.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.cc b/webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.cc index db126d04e3..85ab76d071 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.cc +++ b/webrtc/modules/audio_processing/test/conversational_speech/wavreader_factory.cc @@ -12,9 +12,9 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/checks.h" #include "webrtc/common_audio/wav_file.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/conversational_speech/wavreader_interface.h b/webrtc/modules/audio_processing/test/conversational_speech/wavreader_interface.h index 57342b4d1f..1d1459f28b 100644 --- a/webrtc/modules/audio_processing/test/conversational_speech/wavreader_interface.h +++ b/webrtc/modules/audio_processing/test/conversational_speech/wavreader_interface.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/array_view.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/debug_dump_replayer.cc b/webrtc/modules/audio_processing/test/debug_dump_replayer.cc index c34a14ef73..b88692cee3 100644 --- a/webrtc/modules/audio_processing/test/debug_dump_replayer.cc +++ b/webrtc/modules/audio_processing/test/debug_dump_replayer.cc @@ -10,9 +10,8 @@ #include "webrtc/modules/audio_processing/test/debug_dump_replayer.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/test/protobuf_utils.h" - +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/debug_dump_replayer.h b/webrtc/modules/audio_processing/test/debug_dump_replayer.h index 3bf886c090..9ee4a6349e 100644 --- a/webrtc/modules/audio_processing/test/debug_dump_replayer.h +++ b/webrtc/modules/audio_processing/test/debug_dump_replayer.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/ignore_wundef.h" #include "webrtc/common_audio/channel_buffer.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/ignore_wundef.h" RTC_PUSH_IGNORING_WUNDEF() #include "webrtc/modules/audio_processing/debug.pb.h" diff --git a/webrtc/modules/audio_processing/test/debug_dump_test.cc b/webrtc/modules/audio_processing/test/debug_dump_test.cc index 0e554537af..acaadf391e 100644 --- a/webrtc/modules/audio_processing/test/debug_dump_test.cc +++ b/webrtc/modules/audio_processing/test/debug_dump_test.cc @@ -14,15 +14,14 @@ #include #include -#include "webrtc/base/task_queue.h" #include "webrtc/modules/audio_coding/neteq/tools/resample_input_audio_file.h" #include "webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h" #include "webrtc/modules/audio_processing/test/debug_dump_replayer.h" #include "webrtc/modules/audio_processing/test/test_utils.h" +#include "webrtc/rtc_base/task_queue.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" - namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/echo_canceller_test_tools.cc b/webrtc/modules/audio_processing/test/echo_canceller_test_tools.cc index 59f1da9dea..9593da45f0 100644 --- a/webrtc/modules/audio_processing/test/echo_canceller_test_tools.cc +++ b/webrtc/modules/audio_processing/test/echo_canceller_test_tools.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/echo_canceller_test_tools.h b/webrtc/modules/audio_processing/test/echo_canceller_test_tools.h index 59e1cadebb..27f75acd77 100644 --- a/webrtc/modules/audio_processing/test/echo_canceller_test_tools.h +++ b/webrtc/modules/audio_processing/test/echo_canceller_test_tools.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/random.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/random.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/echo_canceller_test_tools_unittest.cc b/webrtc/modules/audio_processing/test/echo_canceller_test_tools_unittest.cc index 18223fd480..aaef88d58d 100644 --- a/webrtc/modules/audio_processing/test/echo_canceller_test_tools_unittest.cc +++ b/webrtc/modules/audio_processing/test/echo_canceller_test_tools_unittest.cc @@ -12,9 +12,9 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/random.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/performance_timer.cc b/webrtc/modules/audio_processing/test/performance_timer.cc index a002fe35a0..1e9c68ccb8 100644 --- a/webrtc/modules/audio_processing/test/performance_timer.cc +++ b/webrtc/modules/audio_processing/test/performance_timer.cc @@ -14,7 +14,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/performance_timer.h b/webrtc/modules/audio_processing/test/performance_timer.h index 92cda8bd5d..3e75e3f5f5 100644 --- a/webrtc/modules/audio_processing/test/performance_timer.h +++ b/webrtc/modules/audio_processing/test/performance_timer.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/protobuf_utils.h b/webrtc/modules/audio_processing/test/protobuf_utils.h index 8941338917..13ae0cf674 100644 --- a/webrtc/modules/audio_processing/test/protobuf_utils.h +++ b/webrtc/modules/audio_processing/test/protobuf_utils.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/ignore_wundef.h" -#include "webrtc/base/protobuf_utils.h" +#include "webrtc/rtc_base/ignore_wundef.h" +#include "webrtc/rtc_base/protobuf_utils.h" RTC_PUSH_IGNORING_WUNDEF() #include "webrtc/modules/audio_processing/debug.pb.h" diff --git a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/fake_polqa.cc b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/fake_polqa.cc index d15c5223d0..9345a87baa 100644 --- a/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/fake_polqa.cc +++ b/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/fake_polqa.cc @@ -11,7 +11,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/simulator_buffers.cc b/webrtc/modules/audio_processing/test/simulator_buffers.cc index 67fb10d3d5..cecee71ac4 100644 --- a/webrtc/modules/audio_processing/test/simulator_buffers.cc +++ b/webrtc/modules/audio_processing/test/simulator_buffers.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/audio_processing/test/simulator_buffers.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/simulator_buffers.h b/webrtc/modules/audio_processing/test/simulator_buffers.h index 9dff1e6de2..5e6689751a 100644 --- a/webrtc/modules/audio_processing/test/simulator_buffers.h +++ b/webrtc/modules/audio_processing/test/simulator_buffers.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/random.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/random.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/test/test_utils.cc b/webrtc/modules/audio_processing/test/test_utils.cc index 24e9b0ebd2..7c354d0348 100644 --- a/webrtc/modules/audio_processing/test/test_utils.cc +++ b/webrtc/modules/audio_processing/test/test_utils.cc @@ -10,8 +10,8 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/test/test_utils.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/test_utils.h b/webrtc/modules/audio_processing/test/test_utils.h index ca66520cb5..e6c7259c47 100644 --- a/webrtc/modules/audio_processing/test/test_utils.h +++ b/webrtc/modules/audio_processing/test/test_utils.h @@ -18,11 +18,11 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/channel_buffer.h" #include "webrtc/common_audio/wav_file.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/unpack.cc b/webrtc/modules/audio_processing/test/unpack.cc index 61e1ebe91c..4c6c18dc47 100644 --- a/webrtc/modules/audio_processing/test/unpack.cc +++ b/webrtc/modules/audio_processing/test/unpack.cc @@ -18,10 +18,10 @@ #include #include "gflags/gflags.h" -#include "webrtc/base/format_macros.h" -#include "webrtc/base/ignore_wundef.h" #include "webrtc/modules/audio_processing/test/protobuf_utils.h" #include "webrtc/modules/audio_processing/test/test_utils.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/ignore_wundef.h" #include "webrtc/typedefs.h" RTC_PUSH_IGNORING_WUNDEF() diff --git a/webrtc/modules/audio_processing/test/wav_based_simulator.cc b/webrtc/modules/audio_processing/test/wav_based_simulator.cc index 6cf0b744e6..40253964b1 100644 --- a/webrtc/modules/audio_processing/test/wav_based_simulator.cc +++ b/webrtc/modules/audio_processing/test/wav_based_simulator.cc @@ -13,8 +13,8 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/test/test_utils.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/testsupport/trace_to_stderr.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/test/wav_based_simulator.h b/webrtc/modules/audio_processing/test/wav_based_simulator.h index c1fcf6163b..245367e237 100644 --- a/webrtc/modules/audio_processing/test/wav_based_simulator.h +++ b/webrtc/modules/audio_processing/test/wav_based_simulator.h @@ -15,7 +15,7 @@ #include "webrtc/modules/audio_processing/test/audio_processing_simulator.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/audio_processing/three_band_filter_bank.cc b/webrtc/modules/audio_processing/three_band_filter_bank.cc index 61071bbff5..4c62e7ec83 100644 --- a/webrtc/modules/audio_processing/three_band_filter_bank.cc +++ b/webrtc/modules/audio_processing/three_band_filter_bank.cc @@ -37,7 +37,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/transient/moving_moments.cc b/webrtc/modules/audio_processing/transient/moving_moments.cc index 8bca505aef..5701a00270 100644 --- a/webrtc/modules/audio_processing/transient/moving_moments.cc +++ b/webrtc/modules/audio_processing/transient/moving_moments.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/transient/transient_detector.cc b/webrtc/modules/audio_processing/transient/transient_detector.cc index 987ff8130b..65fdc738eb 100644 --- a/webrtc/modules/audio_processing/transient/transient_detector.cc +++ b/webrtc/modules/audio_processing/transient/transient_detector.cc @@ -16,11 +16,11 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/transient/common.h" #include "webrtc/modules/audio_processing/transient/daubechies_8_wavelet_coeffs.h" #include "webrtc/modules/audio_processing/transient/moving_moments.h" #include "webrtc/modules/audio_processing/transient/wpd_tree.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/transient/transient_suppressor.cc b/webrtc/modules/audio_processing/transient/transient_suppressor.cc index 81e5eba9e7..1b05d265b6 100644 --- a/webrtc/modules/audio_processing/transient/transient_suppressor.cc +++ b/webrtc/modules/audio_processing/transient/transient_suppressor.cc @@ -17,14 +17,14 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/common_audio/fft4g.h" #include "webrtc/common_audio/include/audio_util.h" #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" +#include "webrtc/modules/audio_processing/ns/windows_private.h" #include "webrtc/modules/audio_processing/transient/common.h" #include "webrtc/modules/audio_processing/transient/transient_detector.h" -#include "webrtc/modules/audio_processing/ns/windows_private.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/transient/transient_suppressor.h b/webrtc/modules/audio_processing/transient/transient_suppressor.h index 17c2a3964d..74decea7e2 100644 --- a/webrtc/modules/audio_processing/transient/transient_suppressor.h +++ b/webrtc/modules/audio_processing/transient/transient_suppressor.h @@ -15,7 +15,7 @@ #include #include -#include "webrtc/base/gtest_prod_util.h" +#include "webrtc/rtc_base/gtest_prod_util.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/transient/wpd_node.cc b/webrtc/modules/audio_processing/transient/wpd_node.cc index de382b4242..88ad24d740 100644 --- a/webrtc/modules/audio_processing/transient/wpd_node.cc +++ b/webrtc/modules/audio_processing/transient/wpd_node.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/common_audio/fir_filter.h" #include "webrtc/modules/audio_processing/transient/dyadic_decimator.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/transient/wpd_tree.cc b/webrtc/modules/audio_processing/transient/wpd_tree.cc index fece6863fc..187a8cd0ff 100644 --- a/webrtc/modules/audio_processing/transient/wpd_tree.cc +++ b/webrtc/modules/audio_processing/transient/wpd_tree.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/transient/dyadic_decimator.h" #include "webrtc/modules/audio_processing/transient/wpd_node.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/utility/block_mean_calculator.cc b/webrtc/modules/audio_processing/utility/block_mean_calculator.cc index 7f4508ecc7..37919f028a 100644 --- a/webrtc/modules/audio_processing/utility/block_mean_calculator.cc +++ b/webrtc/modules/audio_processing/utility/block_mean_calculator.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/audio_processing/utility/block_mean_calculator.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/utility/block_mean_calculator.h b/webrtc/modules/audio_processing/utility/block_mean_calculator.h index 71e8b63ce8..3dd7d407af 100644 --- a/webrtc/modules/audio_processing/utility/block_mean_calculator.h +++ b/webrtc/modules/audio_processing/utility/block_mean_calculator.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/utility/delay_estimator.cc b/webrtc/modules/audio_processing/utility/delay_estimator.cc index bc67ba1fe2..e01495ea69 100644 --- a/webrtc/modules/audio_processing/utility/delay_estimator.cc +++ b/webrtc/modules/audio_processing/utility/delay_estimator.cc @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" // Number of right shifts for scaling is linearly depending on number of bits in // the far-end binary spectrum. diff --git a/webrtc/modules/audio_processing/utility/delay_estimator_wrapper.cc b/webrtc/modules/audio_processing/utility/delay_estimator_wrapper.cc index 2dd092ce2a..afd07ac114 100644 --- a/webrtc/modules/audio_processing/utility/delay_estimator_wrapper.cc +++ b/webrtc/modules/audio_processing/utility/delay_estimator_wrapper.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/audio_processing/utility/delay_estimator.h" #include "webrtc/modules/audio_processing/utility/delay_estimator_internal.h" +#include "webrtc/rtc_base/checks.h" // Only bit |kBandFirst| through bit |kBandLast| are processed and // |kBandFirst| - |kBandLast| must be < 32. diff --git a/webrtc/modules/audio_processing/vad/standalone_vad.cc b/webrtc/modules/audio_processing/vad/standalone_vad.cc index 95d498210d..7848134215 100644 --- a/webrtc/modules/audio_processing/vad/standalone_vad.cc +++ b/webrtc/modules/audio_processing/vad/standalone_vad.cc @@ -11,8 +11,8 @@ #include "webrtc/modules/audio_processing/vad/standalone_vad.h" #include "webrtc/audio/utility/audio_frame_operations.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/vad/vad_audio_proc.cc b/webrtc/modules/audio_processing/vad/vad_audio_proc.cc index b934588597..d5f6b3bcd7 100644 --- a/webrtc/modules/audio_processing/vad/vad_audio_proc.cc +++ b/webrtc/modules/audio_processing/vad/vad_audio_proc.cc @@ -13,11 +13,11 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/common_audio/fft4g.h" -#include "webrtc/modules/audio_processing/vad/vad_audio_proc_internal.h" #include "webrtc/modules/audio_processing/vad/pitch_internal.h" #include "webrtc/modules/audio_processing/vad/pole_zero_filter.h" +#include "webrtc/modules/audio_processing/vad/vad_audio_proc_internal.h" +#include "webrtc/rtc_base/checks.h" extern "C" { #include "webrtc/modules/audio_coding/codecs/isac/main/source/codec.h" #include "webrtc/modules/audio_coding/codecs/isac/main/source/lpc_analysis.h" diff --git a/webrtc/modules/audio_processing/vad/voice_activity_detector.cc b/webrtc/modules/audio_processing/vad/voice_activity_detector.cc index 6aa58adaa6..8942a03c3c 100644 --- a/webrtc/modules/audio_processing/vad/voice_activity_detector.cc +++ b/webrtc/modules/audio_processing/vad/voice_activity_detector.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace { diff --git a/webrtc/modules/audio_processing/voice_detection_impl.cc b/webrtc/modules/audio_processing/voice_detection_impl.cc index 5365ed083c..9c9e0916d1 100644 --- a/webrtc/modules/audio_processing/voice_detection_impl.cc +++ b/webrtc/modules/audio_processing/voice_detection_impl.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/audio_processing/voice_detection_impl.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/common_audio/vad/include/webrtc_vad.h" #include "webrtc/modules/audio_processing/audio_buffer.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { class VoiceDetectionImpl::Vad { diff --git a/webrtc/modules/audio_processing/voice_detection_impl.h b/webrtc/modules/audio_processing/voice_detection_impl.h index 6ba43dbc9e..3f515ce059 100644 --- a/webrtc/modules/audio_processing/voice_detection_impl.h +++ b/webrtc/modules/audio_processing/voice_detection_impl.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/audio_processing/include/audio_processing.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/audio_processing/voice_detection_unittest.cc b/webrtc/modules/audio_processing/voice_detection_unittest.cc index 7dee44de69..32a4da5037 100644 --- a/webrtc/modules/audio_processing/voice_detection_unittest.cc +++ b/webrtc/modules/audio_processing/voice_detection_unittest.cc @@ -9,11 +9,11 @@ */ #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/audio_processing/audio_buffer.h" #include "webrtc/modules/audio_processing/test/audio_buffer_tools.h" #include "webrtc/modules/audio_processing/test/bitexactness_tools.h" #include "webrtc/modules/audio_processing/voice_detection_impl.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/bitrate_controller/bitrate_controller_impl.cc b/webrtc/modules/bitrate_controller/bitrate_controller_impl.cc index 757ffb5f3b..70efe3e5cd 100644 --- a/webrtc/modules/bitrate_controller/bitrate_controller_impl.cc +++ b/webrtc/modules/bitrate_controller/bitrate_controller_impl.cc @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/bitrate_controller/bitrate_controller_impl.h b/webrtc/modules/bitrate_controller/bitrate_controller_impl.h index ff271531b4..11a5850773 100644 --- a/webrtc/modules/bitrate_controller/bitrate_controller_impl.h +++ b/webrtc/modules/bitrate_controller/bitrate_controller_impl.h @@ -22,9 +22,9 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc index dc14905890..2b5f5a653f 100644 --- a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc +++ b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc @@ -15,10 +15,10 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/logging/rtc_event_log/rtc_event_log.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/field_trial.h" #include "webrtc/system_wrappers/include/metrics.h" diff --git a/webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.h b/webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.h index 7a9d669a1c..0bc2dacf03 100644 --- a/webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.h +++ b/webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/congestion_controller.cc b/webrtc/modules/congestion_controller/congestion_controller.cc index 62772b7f13..7c00693d39 100644 --- a/webrtc/modules/congestion_controller/congestion_controller.cc +++ b/webrtc/modules/congestion_controller/congestion_controller.cc @@ -14,15 +14,15 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/rate_limiter.h" -#include "webrtc/base/socket.h" #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" #include "webrtc/modules/congestion_controller/probe_controller.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/rate_limiter.h" +#include "webrtc/rtc_base/socket.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/congestion_controller_unittest.cc b/webrtc/modules/congestion_controller/congestion_controller_unittest.cc index 46a1bd5720..e8eef8c707 100644 --- a/webrtc/modules/congestion_controller/congestion_controller_unittest.cc +++ b/webrtc/modules/congestion_controller/congestion_controller_unittest.cc @@ -9,7 +9,6 @@ */ #include "webrtc/modules/congestion_controller/include/congestion_controller.h" -#include "webrtc/base/socket.h" #include "webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h" #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" #include "webrtc/modules/congestion_controller/congestion_controller_unittests_helper.h" @@ -19,6 +18,7 @@ #include "webrtc/modules/remote_bitrate_estimator/include/mock/mock_remote_bitrate_observer.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" +#include "webrtc/rtc_base/socket.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/congestion_controller/congestion_controller_unittests_helper.cc b/webrtc/modules/congestion_controller/congestion_controller_unittests_helper.cc index f70b360028..4fb1130f50 100644 --- a/webrtc/modules/congestion_controller/congestion_controller_unittests_helper.cc +++ b/webrtc/modules/congestion_controller/congestion_controller_unittests_helper.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/congestion_controller/congestion_controller_unittests_helper.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/delay_based_bwe.cc b/webrtc/modules/congestion_controller/delay_based_bwe.cc index 685b6c290a..4964349a8a 100644 --- a/webrtc/modules/congestion_controller/delay_based_bwe.cc +++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc @@ -14,15 +14,15 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/logging/rtc_event_log/rtc_event_log.h" #include "webrtc/modules/congestion_controller/include/congestion_controller.h" #include "webrtc/modules/pacing/paced_sender.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/system_wrappers/include/field_trial.h" #include "webrtc/system_wrappers/include/metrics.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/congestion_controller/delay_based_bwe.h b/webrtc/modules/congestion_controller/delay_based_bwe.h index 53eee84286..429797af05 100644 --- a/webrtc/modules/congestion_controller/delay_based_bwe.h +++ b/webrtc/modules/congestion_controller/delay_based_bwe.h @@ -15,9 +15,6 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/race_checker.h" #include "webrtc/modules/congestion_controller/median_slope_estimator.h" #include "webrtc/modules/congestion_controller/probe_bitrate_estimator.h" #include "webrtc/modules/congestion_controller/trendline_estimator.h" @@ -26,6 +23,9 @@ #include "webrtc/modules/remote_bitrate_estimator/inter_arrival.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_estimator.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/race_checker.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/delay_based_bwe_unittest.cc b/webrtc/modules/congestion_controller/delay_based_bwe_unittest.cc index 996af46743..896854b30c 100644 --- a/webrtc/modules/congestion_controller/delay_based_bwe_unittest.cc +++ b/webrtc/modules/congestion_controller/delay_based_bwe_unittest.cc @@ -8,13 +8,13 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/test/gtest.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/modules/pacing/paced_sender.h" #include "webrtc/modules/congestion_controller/delay_based_bwe.h" #include "webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h" +#include "webrtc/modules/pacing/paced_sender.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/field_trial.h" +#include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.cc b/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.cc index 62c9f881bc..9a86d9fe72 100644 --- a/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.cc +++ b/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/ptr_util.h" #include "webrtc/modules/congestion_controller/delay_based_bwe.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/ptr_util.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h b/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h index a12bee52b9..4e9c21ceb2 100644 --- a/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h +++ b/webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.h @@ -17,10 +17,10 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.h" #include "webrtc/modules/congestion_controller/delay_based_bwe.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/congestion_controller/include/congestion_controller.h b/webrtc/modules/congestion_controller/include/congestion_controller.h index 00eb0d7f41..ce9fbc58b0 100644 --- a/webrtc/modules/congestion_controller/include/congestion_controller.h +++ b/webrtc/modules/congestion_controller/include/congestion_controller.h @@ -15,10 +15,6 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/networkroute.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/common_types.h" #include "webrtc/modules/congestion_controller/delay_based_bwe.h" #include "webrtc/modules/congestion_controller/include/receive_side_congestion_controller.h" @@ -28,6 +24,10 @@ #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/pacing/paced_sender.h" #include "webrtc/modules/pacing/packet_router.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/networkroute.h" +#include "webrtc/rtc_base/thread_checker.h" namespace rtc { struct SentPacket; diff --git a/webrtc/modules/congestion_controller/include/receive_side_congestion_controller.h b/webrtc/modules/congestion_controller/include/receive_side_congestion_controller.h index 2fa5919f8c..8544068ebd 100644 --- a/webrtc/modules/congestion_controller/include/receive_side_congestion_controller.h +++ b/webrtc/modules/congestion_controller/include/receive_side_congestion_controller.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { class RemoteBitrateEstimator; diff --git a/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h b/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h index 660750b4e3..7a8f362c31 100644 --- a/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h +++ b/webrtc/modules/congestion_controller/include/send_side_congestion_controller.h @@ -14,10 +14,6 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/networkroute.h" -#include "webrtc/base/race_checker.h" #include "webrtc/common_types.h" #include "webrtc/modules/congestion_controller/delay_based_bwe.h" #include "webrtc/modules/congestion_controller/transport_feedback_adapter.h" @@ -25,6 +21,10 @@ #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/pacing/paced_sender.h" #include "webrtc/modules/pacing/packet_router.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/networkroute.h" +#include "webrtc/rtc_base/race_checker.h" namespace rtc { struct SentPacket; diff --git a/webrtc/modules/congestion_controller/median_slope_estimator.cc b/webrtc/modules/congestion_controller/median_slope_estimator.cc index 181f8969f6..ad5133b72f 100644 --- a/webrtc/modules/congestion_controller/median_slope_estimator.cc +++ b/webrtc/modules/congestion_controller/median_slope_estimator.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/median_slope_estimator.h b/webrtc/modules/congestion_controller/median_slope_estimator.h index f360aa790b..c2c1b7d12e 100644 --- a/webrtc/modules/congestion_controller/median_slope_estimator.h +++ b/webrtc/modules/congestion_controller/median_slope_estimator.h @@ -16,8 +16,8 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/numerics/percentile_filter.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/numerics/percentile_filter.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/median_slope_estimator_unittest.cc b/webrtc/modules/congestion_controller/median_slope_estimator_unittest.cc index 5be0e9b3cb..4dabd50e5c 100644 --- a/webrtc/modules/congestion_controller/median_slope_estimator_unittest.cc +++ b/webrtc/modules/congestion_controller/median_slope_estimator_unittest.cc @@ -8,9 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/test/gtest.h" -#include "webrtc/base/random.h" #include "webrtc/modules/congestion_controller/median_slope_estimator.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc b/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc index 6a6ce2c0d8..8fa22e7dcd 100644 --- a/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc +++ b/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc @@ -12,9 +12,9 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/logging/rtc_event_log/rtc_event_log.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace { // The minumum number of probes we need to receive feedback about in percent diff --git a/webrtc/modules/congestion_controller/probe_controller.cc b/webrtc/modules/congestion_controller/probe_controller.cc index 91340aa430..43889bce9a 100644 --- a/webrtc/modules/congestion_controller/probe_controller.cc +++ b/webrtc/modules/congestion_controller/probe_controller.cc @@ -13,8 +13,8 @@ #include #include -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_conversions.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/probe_controller.h b/webrtc/modules/congestion_controller/probe_controller.h index 28cd10225f..4a3071cc59 100644 --- a/webrtc/modules/congestion_controller/probe_controller.h +++ b/webrtc/modules/congestion_controller/probe_controller.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/criticalsection.h" #include "webrtc/common_types.h" #include "webrtc/modules/pacing/paced_sender.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/probe_controller_unittest.cc b/webrtc/modules/congestion_controller/probe_controller_unittest.cc index 4ed2deeed1..9fc0f55088 100644 --- a/webrtc/modules/congestion_controller/probe_controller_unittest.cc +++ b/webrtc/modules/congestion_controller/probe_controller_unittest.cc @@ -9,9 +9,9 @@ */ #include -#include "webrtc/base/logging.h" #include "webrtc/modules/congestion_controller/probe_controller.h" #include "webrtc/modules/pacing/mock/mock_paced_sender.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/congestion_controller/receive_side_congestion_controller.cc b/webrtc/modules/congestion_controller/receive_side_congestion_controller.cc index b481b26565..3224906974 100644 --- a/webrtc/modules/congestion_controller/receive_side_congestion_controller.cc +++ b/webrtc/modules/congestion_controller/receive_side_congestion_controller.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/congestion_controller/include/receive_side_congestion_controller.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/pacing/packet_router.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/send_side_congestion_controller.cc b/webrtc/modules/congestion_controller/send_side_congestion_controller.cc index d5f966aeaa..60e692ccdf 100644 --- a/webrtc/modules/congestion_controller/send_side_congestion_controller.cc +++ b/webrtc/modules/congestion_controller/send_side_congestion_controller.cc @@ -14,15 +14,15 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/ptr_util.h" -#include "webrtc/base/rate_limiter.h" -#include "webrtc/base/socket.h" #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" #include "webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.h" #include "webrtc/modules/congestion_controller/probe_controller.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/ptr_util.h" +#include "webrtc/rtc_base/rate_limiter.h" +#include "webrtc/rtc_base/socket.h" namespace webrtc { namespace { diff --git a/webrtc/modules/congestion_controller/transport_feedback_adapter.cc b/webrtc/modules/congestion_controller/transport_feedback_adapter.cc index 88caad41d6..7f3f744ecf 100644 --- a/webrtc/modules/congestion_controller/transport_feedback_adapter.cc +++ b/webrtc/modules/congestion_controller/transport_feedback_adapter.cc @@ -10,11 +10,11 @@ #include "webrtc/modules/congestion_controller/transport_feedback_adapter.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/mod_ops.h" #include "webrtc/modules/congestion_controller/delay_based_bwe.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/mod_ops.h" #include "webrtc/system_wrappers/include/field_trial.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/transport_feedback_adapter.h b/webrtc/modules/congestion_controller/transport_feedback_adapter.h index 2e70e448da..063b34dcfb 100644 --- a/webrtc/modules/congestion_controller/transport_feedback_adapter.h +++ b/webrtc/modules/congestion_controller/transport_feedback_adapter.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" +#include "webrtc/rtc_base/thread_checker.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/transport_feedback_adapter_unittest.cc b/webrtc/modules/congestion_controller/transport_feedback_adapter_unittest.cc index 97b7f5f2a5..3479814cde 100644 --- a/webrtc/modules/congestion_controller/transport_feedback_adapter_unittest.cc +++ b/webrtc/modules/congestion_controller/transport_feedback_adapter_unittest.cc @@ -12,13 +12,13 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/modules/bitrate_controller/include/mock/mock_bitrate_controller.h" #include "webrtc/modules/congestion_controller/congestion_controller_unittests_helper.h" #include "webrtc/modules/congestion_controller/transport_feedback_adapter.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/congestion_controller/trendline_estimator.cc b/webrtc/modules/congestion_controller/trendline_estimator.cc index 6edcd8182d..4d25b45bba 100644 --- a/webrtc/modules/congestion_controller/trendline_estimator.cc +++ b/webrtc/modules/congestion_controller/trendline_estimator.cc @@ -12,9 +12,9 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/trendline_estimator.h b/webrtc/modules/congestion_controller/trendline_estimator.h index f09ccb5629..9e4655822d 100644 --- a/webrtc/modules/congestion_controller/trendline_estimator.h +++ b/webrtc/modules/congestion_controller/trendline_estimator.h @@ -16,7 +16,7 @@ #include #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/congestion_controller/trendline_estimator_unittest.cc b/webrtc/modules/congestion_controller/trendline_estimator_unittest.cc index cf2d021af0..6f541ca5d7 100644 --- a/webrtc/modules/congestion_controller/trendline_estimator_unittest.cc +++ b/webrtc/modules/congestion_controller/trendline_estimator_unittest.cc @@ -8,9 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/test/gtest.h" -#include "webrtc/base/random.h" #include "webrtc/modules/congestion_controller/trendline_estimator.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/blank_detector_desktop_capturer_wrapper.cc b/webrtc/modules/desktop_capture/blank_detector_desktop_capturer_wrapper.cc index d909db4f24..13d50d5032 100644 --- a/webrtc/modules/desktop_capture/blank_detector_desktop_capturer_wrapper.cc +++ b/webrtc/modules/desktop_capture/blank_detector_desktop_capturer_wrapper.cc @@ -13,8 +13,8 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/cropped_desktop_frame.cc b/webrtc/modules/desktop_capture/cropped_desktop_frame.cc index b26d5b0600..9d4d123212 100644 --- a/webrtc/modules/desktop_capture/cropped_desktop_frame.cc +++ b/webrtc/modules/desktop_capture/cropped_desktop_frame.cc @@ -12,7 +12,7 @@ #include "webrtc/modules/desktop_capture/cropped_desktop_frame.h" -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/cropping_window_capturer.cc b/webrtc/modules/desktop_capture/cropping_window_capturer.cc index d2ee330b14..a0f89f66fc 100644 --- a/webrtc/modules/desktop_capture/cropping_window_capturer.cc +++ b/webrtc/modules/desktop_capture/cropping_window_capturer.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/desktop_capture/cropping_window_capturer.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/desktop_capture/cropped_desktop_frame.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/cropping_window_capturer_win.cc b/webrtc/modules/desktop_capture/cropping_window_capturer_win.cc index 14cd3c3cc7..2d2dee2ab5 100644 --- a/webrtc/modules/desktop_capture/cropping_window_capturer_win.cc +++ b/webrtc/modules/desktop_capture/cropping_window_capturer_win.cc @@ -10,11 +10,11 @@ #include "webrtc/modules/desktop_capture/cropping_window_capturer.h" -#include "webrtc/base/win32.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/desktop_capture/win/scoped_gdi_object.h" #include "webrtc/modules/desktop_capture/win/screen_capture_utils.h" #include "webrtc/modules/desktop_capture/win/window_capture_utils.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/win32.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc b/webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc index d9d4b12215..c899a76801 100644 --- a/webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc +++ b/webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/mouse_cursor.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_and_cursor_composer.h b/webrtc/modules/desktop_capture/desktop_and_cursor_composer.h index 3e339e8149..c5cc3aa188 100644 --- a/webrtc/modules/desktop_capture/desktop_and_cursor_composer.h +++ b/webrtc/modules/desktop_capture/desktop_and_cursor_composer.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/mouse_cursor_monitor.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_capture_options.h b/webrtc/modules/desktop_capture/desktop_capture_options.h index 22f3fd54d6..e10cab7abe 100644 --- a/webrtc/modules/desktop_capture/desktop_capture_options.h +++ b/webrtc/modules/desktop_capture/desktop_capture_options.h @@ -10,8 +10,8 @@ #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_DESKTOP_CAPTURE_OPTIONS_H_ #define WEBRTC_MODULES_DESKTOP_CAPTURE_DESKTOP_CAPTURE_OPTIONS_H_ -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" #if defined(USE_X11) #include "webrtc/modules/desktop_capture/x11/shared_x_display.h" diff --git a/webrtc/modules/desktop_capture/desktop_capturer_differ_wrapper.cc b/webrtc/modules/desktop_capture/desktop_capturer_differ_wrapper.cc index 196a987836..9dbcd68e5b 100644 --- a/webrtc/modules/desktop_capture/desktop_capturer_differ_wrapper.cc +++ b/webrtc/modules/desktop_capture/desktop_capturer_differ_wrapper.cc @@ -15,10 +15,10 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" #include "webrtc/modules/desktop_capture/differ_block.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_capturer_differ_wrapper_unittest.cc b/webrtc/modules/desktop_capture/desktop_capturer_differ_wrapper_unittest.cc index eb6012a908..fbd24770e4 100644 --- a/webrtc/modules/desktop_capture/desktop_capturer_differ_wrapper_unittest.cc +++ b/webrtc/modules/desktop_capture/desktop_capturer_differ_wrapper_unittest.cc @@ -15,13 +15,13 @@ #include #include -#include "webrtc/base/random.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" #include "webrtc/modules/desktop_capture/desktop_region.h" #include "webrtc/modules/desktop_capture/differ_block.h" #include "webrtc/modules/desktop_capture/fake_desktop_capturer.h" #include "webrtc/modules/desktop_capture/mock_desktop_capturer_callback.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" #include "webrtc/test/gtest.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/desktop_capture/desktop_frame.cc b/webrtc/modules/desktop_capture/desktop_frame.cc index 1c3939b988..6756718d64 100644 --- a/webrtc/modules/desktop_capture/desktop_frame.cc +++ b/webrtc/modules/desktop_capture/desktop_frame.cc @@ -14,7 +14,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_frame.h b/webrtc/modules/desktop_capture/desktop_frame.h index c0eaf03aa6..cd60fcce62 100644 --- a/webrtc/modules/desktop_capture/desktop_frame.h +++ b/webrtc/modules/desktop_capture/desktop_frame.h @@ -13,11 +13,11 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_capture_types.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" #include "webrtc/modules/desktop_capture/desktop_region.h" #include "webrtc/modules/desktop_capture/shared_memory.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_frame_generator.cc b/webrtc/modules/desktop_capture/desktop_frame_generator.cc index 608c8407d8..30a08f2708 100644 --- a/webrtc/modules/desktop_capture/desktop_frame_generator.cc +++ b/webrtc/modules/desktop_capture/desktop_frame_generator.cc @@ -15,9 +15,9 @@ #include -#include "webrtc/base/random.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/desktop_capture/rgba_color.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_frame_rotation.cc b/webrtc/modules/desktop_capture/desktop_frame_rotation.cc index 71cd74b4e5..000f6ae5af 100644 --- a/webrtc/modules/desktop_capture/desktop_frame_rotation.cc +++ b/webrtc/modules/desktop_capture/desktop_frame_rotation.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/checks.h" #include "third_party/libyuv/include/libyuv/rotate_argb.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_frame_win.cc b/webrtc/modules/desktop_capture/desktop_frame_win.cc index 9a3f973639..c694f55b31 100644 --- a/webrtc/modules/desktop_capture/desktop_frame_win.cc +++ b/webrtc/modules/desktop_capture/desktop_frame_win.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_frame_win.h b/webrtc/modules/desktop_capture/desktop_frame_win.h index faf3c8d9f6..96256113ba 100644 --- a/webrtc/modules/desktop_capture/desktop_frame_win.h +++ b/webrtc/modules/desktop_capture/desktop_frame_win.h @@ -15,8 +15,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_geometry.h b/webrtc/modules/desktop_capture/desktop_geometry.h index 1e0deda893..e14ab7085f 100644 --- a/webrtc/modules/desktop_capture/desktop_geometry.h +++ b/webrtc/modules/desktop_capture/desktop_geometry.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_DESKTOP_GEOMETRY_H_ #define WEBRTC_MODULES_DESKTOP_CAPTURE_DESKTOP_GEOMETRY_H_ -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/desktop_region.h b/webrtc/modules/desktop_capture/desktop_region.h index 5278159412..1c05e98bdd 100644 --- a/webrtc/modules/desktop_capture/desktop_region.h +++ b/webrtc/modules/desktop_capture/desktop_region.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper.cc b/webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper.cc index f7f91ceecf..0fd9b8aebf 100644 --- a/webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper.cc +++ b/webrtc/modules/desktop_capture/fallback_desktop_capturer_wrapper.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/mac/desktop_configuration_monitor.cc b/webrtc/modules/desktop_capture/mac/desktop_configuration_monitor.cc index c4f2fb6265..21c06f730a 100644 --- a/webrtc/modules/desktop_capture/mac/desktop_configuration_monitor.cc +++ b/webrtc/modules/desktop_capture/mac/desktop_configuration_monitor.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/desktop_capture/mac/desktop_configuration_monitor.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/desktop_capture/mac/desktop_configuration.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/event_wrapper.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/mac/desktop_configuration_monitor.h b/webrtc/modules/desktop_capture/mac/desktop_configuration_monitor.h index 329beef23d..7b4ade7739 100644 --- a/webrtc/modules/desktop_capture/mac/desktop_configuration_monitor.h +++ b/webrtc/modules/desktop_capture/mac/desktop_configuration_monitor.h @@ -16,8 +16,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/mac/desktop_configuration.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/system_wrappers/include/atomic32.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.cc b/webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.cc index 086b6b563a..ec3974a653 100644 --- a/webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.cc +++ b/webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.cc @@ -14,11 +14,10 @@ #include #include -#include "webrtc/base/macutils.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/desktop_capture/mac/window_list_utils.h" - +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/macutils.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.h b/webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.h index 7a10b4203c..01c1a95be6 100644 --- a/webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.h +++ b/webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_capturer.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/system_wrappers/include/atomic32.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/mac/scoped_pixel_buffer_object.h b/webrtc/modules/desktop_capture/mac/scoped_pixel_buffer_object.h index a32d470954..91d1295578 100644 --- a/webrtc/modules/desktop_capture/mac/scoped_pixel_buffer_object.h +++ b/webrtc/modules/desktop_capture/mac/scoped_pixel_buffer_object.h @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/mac/window_list_utils.cc b/webrtc/modules/desktop_capture/mac/window_list_utils.cc index bcb8798c39..7dcfae93f8 100644 --- a/webrtc/modules/desktop_capture/mac/window_list_utils.cc +++ b/webrtc/modules/desktop_capture/mac/window_list_utils.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/macutils.h" +#include "webrtc/rtc_base/macutils.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/mouse_cursor.h b/webrtc/modules/desktop_capture/mouse_cursor.h index 4662feaded..45e1fa535a 100644 --- a/webrtc/modules/desktop_capture/mouse_cursor.h +++ b/webrtc/modules/desktop_capture/mouse_cursor.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/mouse_cursor_monitor_win.cc b/webrtc/modules/desktop_capture/mouse_cursor_monitor_win.cc index 0ace98f511..83a581cdc2 100644 --- a/webrtc/modules/desktop_capture/mouse_cursor_monitor_win.cc +++ b/webrtc/modules/desktop_capture/mouse_cursor_monitor_win.cc @@ -15,12 +15,12 @@ #include -#include "webrtc/base/logging.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" #include "webrtc/modules/desktop_capture/mouse_cursor.h" #include "webrtc/modules/desktop_capture/win/cursor.h" #include "webrtc/modules/desktop_capture/win/window_capture_utils.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/mouse_cursor_monitor_x11.cc b/webrtc/modules/desktop_capture/mouse_cursor_monitor_x11.cc index 22339d4221..795242e648 100644 --- a/webrtc/modules/desktop_capture/mouse_cursor_monitor_x11.cc +++ b/webrtc/modules/desktop_capture/mouse_cursor_monitor_x11.cc @@ -16,11 +16,11 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/desktop_capture/desktop_capture_options.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/mouse_cursor.h" #include "webrtc/modules/desktop_capture/x11/x_error_trap.h" +#include "webrtc/rtc_base/logging.h" namespace { diff --git a/webrtc/modules/desktop_capture/screen_capture_frame_queue.h b/webrtc/modules/desktop_capture/screen_capture_frame_queue.h index b7945b0921..50201fb944 100644 --- a/webrtc/modules/desktop_capture/screen_capture_frame_queue.h +++ b/webrtc/modules/desktop_capture/screen_capture_frame_queue.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" // TODO(zijiehe): These headers are not used in this file, but to avoid build // break in remoting/host. We should add headers in each individual files. #include "webrtc/modules/desktop_capture/desktop_frame.h" // Remove diff --git a/webrtc/modules/desktop_capture/screen_capturer_helper.h b/webrtc/modules/desktop_capture/screen_capturer_helper.h index 458bccc1ed..5527bbb185 100644 --- a/webrtc/modules/desktop_capture/screen_capturer_helper.h +++ b/webrtc/modules/desktop_capture/screen_capturer_helper.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" #include "webrtc/modules/desktop_capture/desktop_region.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/screen_capturer_integration_test.cc b/webrtc/modules/desktop_capture/screen_capturer_integration_test.cc index 28d780e688..96a8084a46 100644 --- a/webrtc/modules/desktop_capture/screen_capturer_integration_test.cc +++ b/webrtc/modules/desktop_capture/screen_capturer_integration_test.cc @@ -17,23 +17,23 @@ #include // TODO(zijiehe): Remove once flaky has been resolved. -#include "webrtc/base/base64.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_capture_options.h" +#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/desktop_region.h" #include "webrtc/modules/desktop_capture/mock_desktop_capturer_callback.h" #include "webrtc/modules/desktop_capture/rgba_color.h" #include "webrtc/modules/desktop_capture/screen_drawer.h" +#include "webrtc/rtc_base/base64.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" #if defined(WEBRTC_WIN) -#include "webrtc/base/win32.h" #include "webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h" +#include "webrtc/rtc_base/win32.h" #endif // defined(WEBRTC_WIN) using ::testing::_; diff --git a/webrtc/modules/desktop_capture/screen_capturer_unittest.cc b/webrtc/modules/desktop_capture/screen_capturer_unittest.cc index 81ca87a8e4..4aa32202d0 100644 --- a/webrtc/modules/desktop_capture/screen_capturer_unittest.cc +++ b/webrtc/modules/desktop_capture/screen_capturer_unittest.cc @@ -10,13 +10,13 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_capture_options.h" +#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/desktop_region.h" #include "webrtc/modules/desktop_capture/mock_desktop_capturer_callback.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/desktop_capture/screen_capturer_x11.cc b/webrtc/modules/desktop_capture/screen_capturer_x11.cc index 8cc77afe0b..ecc2c96533 100644 --- a/webrtc/modules/desktop_capture/screen_capturer_x11.cc +++ b/webrtc/modules/desktop_capture/screen_capturer_x11.cc @@ -19,17 +19,17 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" -#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_capture_options.h" +#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/screen_capture_frame_queue.h" #include "webrtc/modules/desktop_capture/screen_capturer_helper.h" #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" #include "webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { namespace { diff --git a/webrtc/modules/desktop_capture/screen_drawer_linux.cc b/webrtc/modules/desktop_capture/screen_drawer_linux.cc index 0dd4036219..9a9c20db47 100644 --- a/webrtc/modules/desktop_capture/screen_drawer_linux.cc +++ b/webrtc/modules/desktop_capture/screen_drawer_linux.cc @@ -16,9 +16,9 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/desktop_capture/screen_drawer.h" #include "webrtc/modules/desktop_capture/x11/shared_x_display.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/sleep.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/screen_drawer_unittest.cc b/webrtc/modules/desktop_capture/screen_drawer_unittest.cc index e6f02eff4e..a99395b4df 100644 --- a/webrtc/modules/desktop_capture/screen_drawer_unittest.cc +++ b/webrtc/modules/desktop_capture/screen_drawer_unittest.cc @@ -12,9 +12,9 @@ #include -#include "webrtc/base/logging.h" -#include "webrtc/base/random.h" -#include "webrtc/base/timeutils.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/sleep.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/desktop_capture/shared_desktop_frame.cc b/webrtc/modules/desktop_capture/shared_desktop_frame.cc index d825140828..651e43af60 100644 --- a/webrtc/modules/desktop_capture/shared_desktop_frame.cc +++ b/webrtc/modules/desktop_capture/shared_desktop_frame.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/shared_desktop_frame.h b/webrtc/modules/desktop_capture/shared_desktop_frame.h index f4c3b67342..4b1d7ba04f 100644 --- a/webrtc/modules/desktop_capture/shared_desktop_frame.h +++ b/webrtc/modules/desktop_capture/shared_desktop_frame.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_SHARED_DESKTOP_FRAME_H_ #define WEBRTC_MODULES_DESKTOP_CAPTURE_SHARED_DESKTOP_FRAME_H_ -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/refcount.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/refcount.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/shared_memory.h b/webrtc/modules/desktop_capture/shared_memory.h index e654d95f2d..8d283fbcbe 100644 --- a/webrtc/modules/desktop_capture/shared_memory.h +++ b/webrtc/modules/desktop_capture/shared_memory.h @@ -19,8 +19,8 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/thread_checker.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/thread_checker.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/test_utils.cc b/webrtc/modules/desktop_capture/test_utils.cc index a312a3feac..e2b428ed46 100644 --- a/webrtc/modules/desktop_capture/test_utils.cc +++ b/webrtc/modules/desktop_capture/test_utils.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/test_utils_unittest.cc b/webrtc/modules/desktop_capture/test_utils_unittest.cc index 8d3389f715..fd8fa942cf 100644 --- a/webrtc/modules/desktop_capture/test_utils_unittest.cc +++ b/webrtc/modules/desktop_capture/test_utils_unittest.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/desktop_capture/test_utils.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/desktop_capture/rgba_color.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/cursor.cc b/webrtc/modules/desktop_capture/win/cursor.cc index ebdd20dea2..8e3d34b39a 100644 --- a/webrtc/modules/desktop_capture/win/cursor.cc +++ b/webrtc/modules/desktop_capture/win/cursor.cc @@ -13,11 +13,11 @@ #include #include -#include "webrtc/base/logging.h" -#include "webrtc/modules/desktop_capture/win/scoped_gdi_object.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" #include "webrtc/modules/desktop_capture/mouse_cursor.h" +#include "webrtc/modules/desktop_capture/win/scoped_gdi_object.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/d3d_device.cc b/webrtc/modules/desktop_capture/win/d3d_device.cc index f1d3c57242..190993c3e6 100644 --- a/webrtc/modules/desktop_capture/win/d3d_device.cc +++ b/webrtc/modules/desktop_capture/win/d3d_device.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/desktop.cc b/webrtc/modules/desktop_capture/win/desktop.cc index 72d1570a6b..4a7c263402 100644 --- a/webrtc/modules/desktop_capture/win/desktop.cc +++ b/webrtc/modules/desktop_capture/win/desktop.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/desktop.h b/webrtc/modules/desktop_capture/win/desktop.h index bc4192d848..673731679f 100644 --- a/webrtc/modules/desktop_capture/win/desktop.h +++ b/webrtc/modules/desktop_capture/win/desktop.h @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/dxgi_adapter_duplicator.cc b/webrtc/modules/desktop_capture/win/dxgi_adapter_duplicator.cc index 0d76bd7c31..4870c754d2 100644 --- a/webrtc/modules/desktop_capture/win/dxgi_adapter_duplicator.cc +++ b/webrtc/modules/desktop_capture/win/dxgi_adapter_duplicator.cc @@ -15,8 +15,8 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.cc b/webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.cc index 9ade05b3a3..1c015e4a82 100644 --- a/webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.cc +++ b/webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.cc @@ -15,12 +15,12 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/desktop_capture/desktop_capture_types.h" #include "webrtc/modules/desktop_capture/win/dxgi_frame.h" #include "webrtc/modules/desktop_capture/win/screen_capture_utils.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/sleep.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.h b/webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.h index a254b6d141..41a876b1f3 100644 --- a/webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.h +++ b/webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.h @@ -16,8 +16,6 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" #include "webrtc/modules/desktop_capture/resolution_change_detector.h" #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" @@ -25,6 +23,8 @@ #include "webrtc/modules/desktop_capture/win/dxgi_adapter_duplicator.h" #include "webrtc/modules/desktop_capture/win/dxgi_context.h" #include "webrtc/modules/desktop_capture/win/dxgi_frame.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/dxgi_frame.cc b/webrtc/modules/desktop_capture/win/dxgi_frame.cc index 79a9016b0f..5213f9059e 100644 --- a/webrtc/modules/desktop_capture/win/dxgi_frame.cc +++ b/webrtc/modules/desktop_capture/win/dxgi_frame.cc @@ -14,10 +14,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc b/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc index c02fc91fa2..741d5dad3f 100644 --- a/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc +++ b/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.cc @@ -19,10 +19,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/desktop_capture/win/dxgi_texture_mapping.h" #include "webrtc/modules/desktop_capture/win/dxgi_texture_staging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.h b/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.h index dfc19af61c..0aa7eddcaa 100644 --- a/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.h +++ b/webrtc/modules/desktop_capture/win/dxgi_output_duplicator.h @@ -19,15 +19,15 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" +#include "webrtc/modules/desktop_capture/desktop_frame_rotation.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" #include "webrtc/modules/desktop_capture/desktop_region.h" -#include "webrtc/modules/desktop_capture/desktop_frame_rotation.h" #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" #include "webrtc/modules/desktop_capture/win/d3d_device.h" #include "webrtc/modules/desktop_capture/win/dxgi_context.h" #include "webrtc/modules/desktop_capture/win/dxgi_texture.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/dxgi_texture.cc b/webrtc/modules/desktop_capture/win/dxgi_texture.cc index 4fc27d6641..60f181bc93 100644 --- a/webrtc/modules/desktop_capture/win/dxgi_texture.cc +++ b/webrtc/modules/desktop_capture/win/dxgi_texture.cc @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/desktop_capture/desktop_region.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" using Microsoft::WRL::ComPtr; diff --git a/webrtc/modules/desktop_capture/win/dxgi_texture_mapping.cc b/webrtc/modules/desktop_capture/win/dxgi_texture_mapping.cc index 02c49592b4..90d8e896f1 100644 --- a/webrtc/modules/desktop_capture/win/dxgi_texture_mapping.cc +++ b/webrtc/modules/desktop_capture/win/dxgi_texture_mapping.cc @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/dxgi_texture_staging.cc b/webrtc/modules/desktop_capture/win/dxgi_texture_staging.cc index d0a50ba66d..48dc02748b 100644 --- a/webrtc/modules/desktop_capture/win/dxgi_texture_staging.cc +++ b/webrtc/modules/desktop_capture/win/dxgi_texture_staging.cc @@ -15,8 +15,8 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" using Microsoft::WRL::ComPtr; diff --git a/webrtc/modules/desktop_capture/win/scoped_gdi_object.h b/webrtc/modules/desktop_capture/win/scoped_gdi_object.h index 1cac63e43d..f0d5477aa5 100644 --- a/webrtc/modules/desktop_capture/win/scoped_gdi_object.h +++ b/webrtc/modules/desktop_capture/win/scoped_gdi_object.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/scoped_thread_desktop.h b/webrtc/modules/desktop_capture/win/scoped_thread_desktop.h index 023e6df9a8..a495bebbf5 100644 --- a/webrtc/modules/desktop_capture/win/scoped_thread_desktop.h +++ b/webrtc/modules/desktop_capture/win/scoped_thread_desktop.h @@ -15,7 +15,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/screen_capture_utils.cc b/webrtc/modules/desktop_capture/win/screen_capture_utils.cc index 7d9203f27b..9fa5c8b12d 100644 --- a/webrtc/modules/desktop_capture/win/screen_capture_utils.cc +++ b/webrtc/modules/desktop_capture/win/screen_capture_utils.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc b/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc index f865a1e6e0..74b7b4501a 100644 --- a/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc +++ b/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.cc @@ -13,11 +13,11 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/ptr_util.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/ptr_util.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h b/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h index 67f177e2ca..5064a9623b 100644 --- a/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h +++ b/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h @@ -16,13 +16,13 @@ #include #include -#include "webrtc/base/scoped_ref_ptr.h" -#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_capture_options.h" +#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_region.h" #include "webrtc/modules/desktop_capture/screen_capture_frame_queue.h" #include "webrtc/modules/desktop_capture/win/dxgi_duplicator_controller.h" #include "webrtc/modules/desktop_capture/win/dxgi_frame.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.cc b/webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.cc index 5525381486..44c81ff12c 100644 --- a/webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.cc +++ b/webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.cc @@ -12,9 +12,6 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/desktop_capture/desktop_capture_options.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/desktop_frame_win.h" @@ -23,6 +20,9 @@ #include "webrtc/modules/desktop_capture/win/cursor.h" #include "webrtc/modules/desktop_capture/win/desktop.h" #include "webrtc/modules/desktop_capture/win/screen_capture_utils.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.h b/webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.h index 05c0283a36..70a939d760 100644 --- a/webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.h +++ b/webrtc/modules/desktop_capture/win/screen_capturer_win_gdi.h @@ -15,11 +15,11 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/screen_capture_frame_queue.h" #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" #include "webrtc/modules/desktop_capture/win/scoped_thread_desktop.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/screen_capturer_win_magnifier.cc b/webrtc/modules/desktop_capture/win/screen_capturer_win_magnifier.cc index b1cbacd745..f744f42aaf 100644 --- a/webrtc/modules/desktop_capture/win/screen_capturer_win_magnifier.cc +++ b/webrtc/modules/desktop_capture/win/screen_capturer_win_magnifier.cc @@ -12,9 +12,6 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/desktop_capture/desktop_capture_options.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/desktop_frame_win.h" @@ -23,6 +20,9 @@ #include "webrtc/modules/desktop_capture/win/cursor.h" #include "webrtc/modules/desktop_capture/win/desktop.h" #include "webrtc/modules/desktop_capture/win/screen_capture_utils.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/screen_capturer_win_magnifier.h b/webrtc/modules/desktop_capture/win/screen_capturer_win_magnifier.h index 7f1f55a121..680bac3ff8 100644 --- a/webrtc/modules/desktop_capture/win/screen_capturer_win_magnifier.h +++ b/webrtc/modules/desktop_capture/win/screen_capturer_win_magnifier.h @@ -17,12 +17,12 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/screen_capture_frame_queue.h" #include "webrtc/modules/desktop_capture/screen_capturer_helper.h" #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" #include "webrtc/modules/desktop_capture/win/scoped_thread_desktop.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/system_wrappers/include/atomic32.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/win/window_capture_utils.h b/webrtc/modules/desktop_capture/win/window_capture_utils.h index 85bca4c824..c13cad7bda 100644 --- a/webrtc/modules/desktop_capture/win/window_capture_utils.h +++ b/webrtc/modules/desktop_capture/win/window_capture_utils.h @@ -10,8 +10,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/window_capturer_null.cc b/webrtc/modules/desktop_capture/window_capturer_null.cc old mode 100755 new mode 100644 index e75621c473..d4ef9b940a --- a/webrtc/modules/desktop_capture/window_capturer_null.cc +++ b/webrtc/modules/desktop_capture/window_capturer_null.cc @@ -10,9 +10,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/window_capturer_win.cc b/webrtc/modules/desktop_capture/window_capturer_win.cc index 0ca88cfa55..4fffd6bcc3 100644 --- a/webrtc/modules/desktop_capture/window_capturer_win.cc +++ b/webrtc/modules/desktop_capture/window_capturer_win.cc @@ -12,13 +12,13 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/win32.h" #include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_frame_win.h" #include "webrtc/modules/desktop_capture/win/window_capture_utils.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/win32.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/window_capturer_x11.cc b/webrtc/modules/desktop_capture/window_capturer_x11.cc index d794e8a718..ffe8a3ab9b 100644 --- a/webrtc/modules/desktop_capture/window_capturer_x11.cc +++ b/webrtc/modules/desktop_capture/window_capturer_x11.cc @@ -17,15 +17,15 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/scoped_ref_ptr.h" -#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_capture_options.h" +#include "webrtc/modules/desktop_capture/desktop_capturer.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/x11/shared_x_display.h" #include "webrtc/modules/desktop_capture/x11/x_error_trap.h" #include "webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/x11/shared_x_display.cc b/webrtc/modules/desktop_capture/x11/shared_x_display.cc index 691fe56876..853d50fb9a 100644 --- a/webrtc/modules/desktop_capture/x11/shared_x_display.cc +++ b/webrtc/modules/desktop_capture/x11/shared_x_display.cc @@ -14,8 +14,8 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/x11/shared_x_display.h b/webrtc/modules/desktop_capture/x11/shared_x_display.h index 648f67a51f..3dcd2fd214 100644 --- a/webrtc/modules/desktop_capture/x11/shared_x_display.h +++ b/webrtc/modules/desktop_capture/x11/shared_x_display.h @@ -16,8 +16,8 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" #include "webrtc/system_wrappers/include/atomic32.h" // Including Xlib.h will involve evil defines (Bool, Status, True, False), which diff --git a/webrtc/modules/desktop_capture/x11/x_error_trap.h b/webrtc/modules/desktop_capture/x11/x_error_trap.h index f1f6e11c63..70414a4cc6 100644 --- a/webrtc/modules/desktop_capture/x11/x_error_trap.h +++ b/webrtc/modules/desktop_capture/x11/x_error_trap.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.cc b/webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.cc index dc95eb6932..26c334eafd 100644 --- a/webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.cc +++ b/webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.cc @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/desktop_capture/desktop_frame.h" #include "webrtc/modules/desktop_capture/x11/x_error_trap.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.h b/webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.h index 51160c57fa..5a4cf2180d 100644 --- a/webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.h +++ b/webrtc/modules/desktop_capture/x11/x_server_pixel_buffer.h @@ -13,8 +13,8 @@ #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_X11_X_SERVER_PIXEL_BUFFER_H_ #define WEBRTC_MODULES_DESKTOP_CAPTURE_X11_X_SERVER_PIXEL_BUFFER_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/desktop_capture/desktop_geometry.h" +#include "webrtc/rtc_base/constructormagic.h" #include #include diff --git a/webrtc/modules/include/module_common_types.h b/webrtc/modules/include/module_common_types.h index b719226d24..7a186c4091 100644 --- a/webrtc/modules/include/module_common_types.h +++ b/webrtc/modules/include/module_common_types.h @@ -18,14 +18,14 @@ #include #include "webrtc/api/video/video_rotation.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/deprecation.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/safe_conversions.h" #include "webrtc/common_types.h" #include "webrtc/modules/video_coding/codecs/h264/include/h264_globals.h" #include "webrtc/modules/video_coding/codecs/vp8/include/vp8_globals.h" #include "webrtc/modules/video_coding/codecs/vp9/include/vp9_globals.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/deprecation.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/safe_conversions.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/media_file/media_file_impl.cc b/webrtc/modules/media_file/media_file_impl.cc index e35626c760..56dc9c8e9a 100644 --- a/webrtc/modules/media_file/media_file_impl.cc +++ b/webrtc/modules/media_file/media_file_impl.cc @@ -10,8 +10,8 @@ #include -#include "webrtc/base/format_macros.h" #include "webrtc/modules/media_file/media_file_impl.h" +#include "webrtc/rtc_base/format_macros.h" #include "webrtc/system_wrappers/include/file_wrapper.h" #include "webrtc/system_wrappers/include/trace.h" diff --git a/webrtc/modules/media_file/media_file_impl.h b/webrtc/modules/media_file/media_file_impl.h index 7d974ef313..664030a0f1 100644 --- a/webrtc/modules/media_file/media_file_impl.h +++ b/webrtc/modules/media_file/media_file_impl.h @@ -11,12 +11,12 @@ #ifndef WEBRTC_MODULES_MEDIA_FILE_MEDIA_FILE_IMPL_H_ #define WEBRTC_MODULES_MEDIA_FILE_MEDIA_FILE_IMPL_H_ -#include "webrtc/base/criticalsection.h" #include "webrtc/common_types.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/media_file/media_file.h" #include "webrtc/modules/media_file/media_file_defines.h" #include "webrtc/modules/media_file/media_file_utility.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { class MediaFileImpl : public MediaFile diff --git a/webrtc/modules/media_file/media_file_utility.cc b/webrtc/modules/media_file/media_file_utility.cc index ae8d06f634..d30581230c 100644 --- a/webrtc/modules/media_file/media_file_utility.cc +++ b/webrtc/modules/media_file/media_file_utility.cc @@ -15,10 +15,10 @@ #include #include -#include "webrtc/base/format_macros.h" #include "webrtc/common_audio/wav_header.h" #include "webrtc/common_types.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/format_macros.h" #include "webrtc/system_wrappers/include/file_wrapper.h" #include "webrtc/system_wrappers/include/trace.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/pacing/alr_detector.cc b/webrtc/modules/pacing/alr_detector.cc index 5066e6ff79..250ad4709e 100644 --- a/webrtc/modules/pacing/alr_detector.cc +++ b/webrtc/modules/pacing/alr_detector.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/format_macros.h" -#include "webrtc/base/logging.h" #include "webrtc/system_wrappers/include/field_trial.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/logging.h" namespace { // Time period over which outgoing traffic is measured. diff --git a/webrtc/modules/pacing/alr_detector.h b/webrtc/modules/pacing/alr_detector.h index 087e444da1..df0b7d2407 100644 --- a/webrtc/modules/pacing/alr_detector.h +++ b/webrtc/modules/pacing/alr_detector.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_PACING_ALR_DETECTOR_H_ #define WEBRTC_MODULES_PACING_ALR_DETECTOR_H_ -#include "webrtc/base/optional.h" -#include "webrtc/base/rate_statistics.h" #include "webrtc/common_types.h" #include "webrtc/modules/pacing/paced_sender.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/rate_statistics.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/pacing/bitrate_prober.cc b/webrtc/modules/pacing/bitrate_prober.cc index 1f515bfb1a..8f676af678 100644 --- a/webrtc/modules/pacing/bitrate_prober.cc +++ b/webrtc/modules/pacing/bitrate_prober.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/logging/rtc_event_log/rtc_event_log.h" #include "webrtc/modules/pacing/paced_sender.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/pacing/bitrate_prober.h b/webrtc/modules/pacing/bitrate_prober.h index 510b2bd568..a88898fc03 100644 --- a/webrtc/modules/pacing/bitrate_prober.h +++ b/webrtc/modules/pacing/bitrate_prober.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/basictypes.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/pacing/paced_sender.cc b/webrtc/modules/pacing/paced_sender.cc index 913dbfc274..4a66581e78 100644 --- a/webrtc/modules/pacing/paced_sender.cc +++ b/webrtc/modules/pacing/paced_sender.cc @@ -16,12 +16,12 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/pacing/alr_detector.h" #include "webrtc/modules/pacing/bitrate_prober.h" #include "webrtc/modules/utility/include/process_thread.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/field_trial.h" diff --git a/webrtc/modules/pacing/paced_sender.h b/webrtc/modules/pacing/paced_sender.h index be1318d42b..a547aab70f 100644 --- a/webrtc/modules/pacing/paced_sender.h +++ b/webrtc/modules/pacing/paced_sender.h @@ -15,11 +15,11 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/include/module.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/pacing/packet_router.cc b/webrtc/modules/pacing/packet_router.cc index d5fd8b98d2..1cee90a441 100644 --- a/webrtc/modules/pacing/packet_router.cc +++ b/webrtc/modules/pacing/packet_router.cc @@ -10,12 +10,12 @@ #include "webrtc/modules/pacing/packet_router.h" -#include "webrtc/base/atomicops.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/pacing/packet_router.h b/webrtc/modules/pacing/packet_router.h index 5c90577f2b..12d726a2aa 100644 --- a/webrtc/modules/pacing/packet_router.h +++ b/webrtc/modules/pacing/packet_router.h @@ -14,14 +14,14 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" -#include "webrtc/base/race_checker.h" #include "webrtc/common_types.h" #include "webrtc/modules/pacing/paced_sender.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/race_checker.h" +#include "webrtc/rtc_base/thread_annotations.h" namespace webrtc { diff --git a/webrtc/modules/pacing/packet_router_unittest.cc b/webrtc/modules/pacing/packet_router_unittest.cc index 28fea1ddc4..d64d48d519 100644 --- a/webrtc/modules/pacing/packet_router_unittest.cc +++ b/webrtc/modules/pacing/packet_router_unittest.cc @@ -11,12 +11,12 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/fakeclock.h" #include "webrtc/modules/pacing/packet_router.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/fakeclock.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/remote_bitrate_estimator/aimd_rate_control.cc b/webrtc/modules/remote_bitrate_estimator/aimd_rate_control.cc index 4b9343c440..d46732c26c 100644 --- a/webrtc/modules/remote_bitrate_estimator/aimd_rate_control.cc +++ b/webrtc/modules/remote_bitrate_estimator/aimd_rate_control.cc @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/safe_minmax.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/safe_minmax.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" diff --git a/webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h b/webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h index 6aa2338e00..24cb4d3aa7 100644 --- a/webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h +++ b/webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_AIMD_RATE_CONTROL_H_ #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_AIMD_RATE_CONTROL_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc b/webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc index c8817c1fcb..b3cb98d4e8 100644 --- a/webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc +++ b/webrtc/modules/remote_bitrate_estimator/bwe_simulations.cc @@ -10,15 +10,14 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet_sender.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" - namespace webrtc { namespace testing { namespace bwe { diff --git a/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h b/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h index 7914e8cf2b..470ee37bda 100644 --- a/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h +++ b/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_ -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/typedefs.h" #define BWE_MAX(a, b) ((a) > (b) ? (a) : (b)) diff --git a/webrtc/modules/remote_bitrate_estimator/include/send_time_history.h b/webrtc/modules/remote_bitrate_estimator/include/send_time_history.h index b3bbcfcb68..026670acbf 100644 --- a/webrtc/modules/remote_bitrate_estimator/include/send_time_history.h +++ b/webrtc/modules/remote_bitrate_estimator/include/send_time_history.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { class Clock; diff --git a/webrtc/modules/remote_bitrate_estimator/inter_arrival.cc b/webrtc/modules/remote_bitrate_estimator/inter_arrival.cc index 1b2dc43db2..81244f5ddc 100644 --- a/webrtc/modules/remote_bitrate_estimator/inter_arrival.cc +++ b/webrtc/modules/remote_bitrate_estimator/inter_arrival.cc @@ -13,8 +13,8 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/inter_arrival.h b/webrtc/modules/remote_bitrate_estimator/inter_arrival.h index 088b925d2e..00742697f4 100644 --- a/webrtc/modules/remote_bitrate_estimator/inter_arrival.h +++ b/webrtc/modules/remote_bitrate_estimator/inter_arrival.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc b/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc index 879cd28afc..b7d5ca39aa 100644 --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc @@ -17,12 +17,12 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_minmax.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_minmax.h" #include "webrtc/system_wrappers/include/field_trial.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector.h b/webrtc/modules/remote_bitrate_estimator/overuse_detector.h index fc1cc152ec..399bfa4067 100644 --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector.h +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector.h @@ -12,9 +12,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc b/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc index 0178f33ec1..e90a4eee51 100644 --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc @@ -15,12 +15,12 @@ #include #include -#include "webrtc/base/random.h" -#include "webrtc/base/rate_statistics.h" #include "webrtc/common_types.h" #include "webrtc/modules/remote_bitrate_estimator/inter_arrival.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_estimator.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/rate_statistics.h" #include "webrtc/test/field_trial.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_estimator.cc b/webrtc/modules/remote_bitrate_estimator/overuse_estimator.cc index 0beab30945..27afdd0e11 100644 --- a/webrtc/modules/remote_bitrate_estimator/overuse_estimator.cc +++ b/webrtc/modules/remote_bitrate_estimator/overuse_estimator.cc @@ -17,9 +17,9 @@ #include -#include "webrtc/base/logging.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_estimator.h b/webrtc/modules/remote_bitrate_estimator/overuse_estimator.h index 895ed77716..d05ddee944 100644 --- a/webrtc/modules/remote_bitrate_estimator/overuse_estimator.h +++ b/webrtc/modules/remote_bitrate_estimator/overuse_estimator.h @@ -12,9 +12,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_types.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc index 23fbd2aa2c..4f799b3f7d 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc @@ -14,12 +14,12 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/pacing/paced_sender.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/system_wrappers/include/metrics.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.h b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.h index 866c7b8e1b..564b563cc7 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.h +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.h @@ -16,16 +16,16 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/rate_statistics.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/modules/remote_bitrate_estimator/inter_arrival.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_estimator.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/rate_statistics.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time_unittest.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time_unittest.cc index 2105e329dd..017cc675fc 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time_unittest.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time_unittest.cc @@ -8,9 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc index 5ac8746b44..efc5430d41 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc @@ -12,13 +12,13 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h" #include "webrtc/modules/remote_bitrate_estimator/inter_arrival.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" #include "webrtc/modules/remote_bitrate_estimator/overuse_estimator.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/metrics.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.h b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.h index 0b78bfc332..baccf52eec 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.h +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.h @@ -15,11 +15,11 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/rate_statistics.h" #include "webrtc/modules/remote_bitrate_estimator/aimd_rate_control.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/rate_statistics.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream_unittest.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream_unittest.cc index 42b5acbedf..639a8ceb6c 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream_unittest.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream_unittest.cc @@ -8,9 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.h" #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc index fef4d8dfb2..4c12eac32f 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h index 460a3a96b9..27c54d6ccb 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h @@ -17,8 +17,8 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc index 37c2d04f0b..97b8bcf7ea 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc @@ -16,12 +16,12 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/random.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet_sender.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/testsupport/fileutils.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc index 35bc667b5a..6ddee174b1 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc @@ -13,12 +13,12 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/safe_minmax.h" #include "webrtc/modules/pacing/packet_router.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/safe_minmax.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h index 83ae078445..52632cf01f 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h +++ b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/send_time_history.cc b/webrtc/modules/remote_bitrate_estimator/send_time_history.cc index de9246c65d..734a920713 100644 --- a/webrtc/modules/remote_bitrate_estimator/send_time_history.cc +++ b/webrtc/modules/remote_bitrate_estimator/send_time_history.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe.cc index bc5c3f32e1..bd976e8591 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe.cc @@ -12,12 +12,12 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/test/estimators/bbr.h" #include "webrtc/modules/remote_bitrate_estimator/test/estimators/nada.h" #include "webrtc/modules/remote_bitrate_estimator/test/estimators/remb.h" #include "webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.h" #include "webrtc/modules/remote_bitrate_estimator/test/estimators/tcp.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe.h b/webrtc/modules/remote_bitrate_estimator/test/bwe.h index 5ff1190758..4474ed253a 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe.h +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe.h @@ -16,11 +16,11 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/gtest_prod_util.h" -#include "webrtc/modules/remote_bitrate_estimator/test/packet.h" #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h" +#include "webrtc/modules/remote_bitrate_estimator/test/packet.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/gtest_prod_util.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc index 6d0ed5f289..357cfa5c8d 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc @@ -13,12 +13,12 @@ #include #include -#include "webrtc/base/arraysize.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h" #include "webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet_sender.h" +#include "webrtc/rtc_base/arraysize.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/field_trial.h" #include "webrtc/test/testsupport/perf_test.h" diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.h b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.h index 963b60639a..01e439c7af 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.h +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.h @@ -15,10 +15,10 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_baselinefile.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_baselinefile.cc index 7ba95f0b76..94a3d5e110 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_baselinefile.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_baselinefile.cc @@ -16,9 +16,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_fileutils.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/test/testsupport/fileutils.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_fileutils.h b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_fileutils.h index d470324ac3..99bdcf9741 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_fileutils.h +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_fileutils.h @@ -15,8 +15,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc index 1361277508..fdb1c1d0e1 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc @@ -14,8 +14,8 @@ #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/safe_minmax.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/safe_minmax.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h index adc3b9951d..08b0a72c50 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h @@ -24,8 +24,6 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/random.h" #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/pacing/paced_sender.h" @@ -33,6 +31,8 @@ #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework_unittest.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework_unittest.cc index bd41a134ca..775756e943 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework_unittest.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework_unittest.cc @@ -12,9 +12,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet_sender.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.cc index a8cd84d8c8..729254a9b3 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.cc @@ -18,9 +18,9 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/format_macros.h" -#include "webrtc/base/platform_thread.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" +#include "webrtc/rtc_base/platform_thread.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h index be9ecdba52..76f2aeed4a 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h @@ -128,9 +128,9 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/common_types.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" #define BWE_TEST_LOGGING_GLOBAL_CONTEXT(name) \ do { \ diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_unittest.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe_unittest.cc index f9255cc370..3033726d87 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_unittest.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_unittest.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/arraysize.h" +#include "webrtc/rtc_base/arraysize.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/bbr.cc b/webrtc/modules/remote_bitrate_estimator/test/estimators/bbr.cc index 0d4dfb4c4b..625e4eebeb 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/estimators/bbr.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/bbr.cc @@ -15,9 +15,9 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/congestion_controller/delay_based_bwe.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.cc b/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.cc index 39cad74ce4..0c2bf78264 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.cc @@ -18,10 +18,10 @@ #include #include -#include "webrtc/base/arraysize.h" -#include "webrtc/modules/remote_bitrate_estimator/test/estimators/nada.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" +#include "webrtc/modules/remote_bitrate_estimator/test/estimators/nada.h" #include "webrtc/modules/rtp_rtcp/include/receive_statistics.h" +#include "webrtc/rtc_base/arraysize.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.h b/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.h index c2c4f59b3c..75f769d0cb 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.h +++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/nada.h @@ -21,9 +21,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/voice_engine/channel.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/nada_unittest.cc b/webrtc/modules/remote_bitrate_estimator/test/estimators/nada_unittest.cc index aca7c99395..d6226ab94b 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/estimators/nada_unittest.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/nada_unittest.cc @@ -14,11 +14,11 @@ #include #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet.h" #include "webrtc/modules/remote_bitrate_estimator/test/packet_sender.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.h b/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.h index 73e4a30db3..841f79e419 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.h +++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.h @@ -15,9 +15,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc b/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc index 905659d0ee..6e6ac2949d 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/logging.h" -#include "webrtc/base/ptr_util.h" #include "webrtc/modules/congestion_controller/delay_based_bwe.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/ptr_util.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h b/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h index 72edd09120..56ea1df3d2 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h +++ b/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h @@ -16,7 +16,7 @@ #include #include -#include "webrtc/base/gtest_prod_util.h" +#include "webrtc/rtc_base/gtest_prod_util.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h b/webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h index 7214460ae3..c63e38ffd4 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h +++ b/webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h" #include "webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc b/webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc index e962c591a7..de4d93def3 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" #include "webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/test/packet_sender.h b/webrtc/modules/remote_bitrate_estimator/test/packet_sender.h index 2bc3d01ae7..0df61b039a 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/packet_sender.h +++ b/webrtc/modules/remote_bitrate_estimator/test/packet_sender.h @@ -17,10 +17,10 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace testing { diff --git a/webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp_play.cc b/webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp_play.cc index f5dbaef371..fa9a026a95 100644 --- a/webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp_play.cc +++ b/webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp_play.cc @@ -12,11 +12,11 @@ #include -#include "webrtc/base/format_macros.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h" +#include "webrtc/rtc_base/format_macros.h" #include "webrtc/test/rtp_file_reader.h" class Observer : public webrtc::RemoteBitrateObserver { diff --git a/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc b/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc index 2b8c5b056c..7a88236c2d 100644 --- a/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc +++ b/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/format_macros.h" #include "webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h" +#include "webrtc/rtc_base/format_macros.h" #include "webrtc/test/rtp_file_reader.h" int main(int argc, char** argv) { diff --git a/webrtc/modules/rtp_rtcp/include/flexfec_receiver.h b/webrtc/modules/rtp_rtcp/include/flexfec_receiver.h index ca612c6be3..384e3c01de 100644 --- a/webrtc/modules/rtp_rtcp/include/flexfec_receiver.h +++ b/webrtc/modules/rtp_rtcp/include/flexfec_receiver.h @@ -13,11 +13,11 @@ #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/sequenced_task_checker.h" #include "webrtc/modules/rtp_rtcp/include/ulpfec_receiver.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/sequenced_task_checker.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/include/flexfec_sender.h b/webrtc/modules/rtp_rtcp/include/flexfec_sender.h index 0110ff575d..3bcd2eb48c 100644 --- a/webrtc/modules/rtp_rtcp/include/flexfec_sender.h +++ b/webrtc/modules/rtp_rtcp/include/flexfec_sender.h @@ -14,9 +14,6 @@ #include #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/basictypes.h" -#include "webrtc/base/random.h" #include "webrtc/config.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/include/flexfec_sender.h" @@ -24,6 +21,9 @@ #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" #include "webrtc/modules/rtp_rtcp/source/ulpfec_generator.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h b/webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h index 118df4c4cf..e80593bf9f 100644 --- a/webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h +++ b/webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/system_wrappers/include/rtp_to_ntp_estimator.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/include/rtp_cvo.h b/webrtc/modules/rtp_rtcp/include/rtp_cvo.h index 5fa0619947..6ce731200c 100644 --- a/webrtc/modules/rtp_rtcp/include/rtp_cvo.h +++ b/webrtc/modules/rtp_rtcp/include/rtp_cvo.h @@ -11,7 +11,7 @@ #define WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_CVO_H_ #include "webrtc/api/video/video_rotation.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h b/webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h index 437a0d2245..98bc9ecad9 100644 --- a/webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h +++ b/webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h @@ -13,11 +13,11 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/basictypes.h" -#include "webrtc/base/checks.h" #include "webrtc/config.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h b/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h index e54e8c2823..eb552b84e1 100644 --- a/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h +++ b/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h @@ -15,8 +15,8 @@ #include #include "webrtc/api/audio_codecs/audio_format.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h b/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h index 6fc6b862b8..3246cf8930 100644 --- a/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h +++ b/webrtc/modules/rtp_rtcp/include/rtp_rtcp.h @@ -16,12 +16,12 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/deprecation.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/include/module.h" #include "webrtc/modules/rtp_rtcp/include/flexfec_sender.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/deprecation.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h b/webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h index 56f03d5409..3bf93d8877 100644 --- a/webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h +++ b/webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h @@ -15,9 +15,9 @@ #include #include -#include "webrtc/base/deprecation.h" #include "webrtc/common_types.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/deprecation.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/rtp_rtcp/mocks/mock_recovered_packet_receiver.h b/webrtc/modules/rtp_rtcp/mocks/mock_recovered_packet_receiver.h index d79034480e..fb8529fa30 100644 --- a/webrtc/modules/rtp_rtcp/mocks/mock_recovered_packet_receiver.h +++ b/webrtc/modules/rtp_rtcp/mocks/mock_recovered_packet_receiver.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RECOVERED_PACKET_RECEIVER_H_ #define WEBRTC_MODULES_RTP_RTCP_MOCKS_MOCK_RECOVERED_PACKET_RECEIVER_H_ -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" +#include "webrtc/rtc_base/basictypes.h" #include "webrtc/test/gmock.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h b/webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h index d1b9bd485d..8ed5df17b4 100644 --- a/webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h +++ b/webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h @@ -15,12 +15,12 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/include/module.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/optional.h" #include "webrtc/test/gmock.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/dtmf_queue.h b/webrtc/modules/rtp_rtcp/source/dtmf_queue.h index af546dc230..9a8c2e7b30 100644 --- a/webrtc/modules/rtp_rtcp/source/dtmf_queue.h +++ b/webrtc/modules/rtp_rtcp/source/dtmf_queue.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/criticalsection.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { class DtmfQueue { diff --git a/webrtc/modules/rtp_rtcp/source/fec_test_helper.cc b/webrtc/modules/rtp_rtcp/source/fec_test_helper.cc index 05655facac..45dfbf5ba4 100644 --- a/webrtc/modules/rtp_rtcp/source/fec_test_helper.cc +++ b/webrtc/modules/rtp_rtcp/source/fec_test_helper.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/rtp_rtcp/source/fec_test_helper.h b/webrtc/modules/rtp_rtcp/source/fec_test_helper.h index 1bd8261006..fce99dc3a2 100644 --- a/webrtc/modules/rtp_rtcp/source/fec_test_helper.h +++ b/webrtc/modules/rtp_rtcp/source/fec_test_helper.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/random.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/random.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.cc b/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.cc index 9017ab585b..d1a1b045c7 100644 --- a/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.cc +++ b/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.cc @@ -14,10 +14,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.h b/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.h index 13f747720f..720a8b6dd1 100644 --- a/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.h +++ b/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_FLEXFEC_HEADER_READER_WRITER_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_FLEXFEC_HEADER_READER_WRITER_H_ -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer_unittest.cc b/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer_unittest.cc index 7546931320..6b7c9c55e0 100644 --- a/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer_unittest.cc @@ -13,14 +13,14 @@ #include #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/random.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc b/webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc index 13899d5e5f..454f32798a 100644 --- a/webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc +++ b/webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/flexfec_receiver_unittest.cc b/webrtc/modules/rtp_rtcp/source/flexfec_receiver_unittest.cc index a70d73c688..93c49cb6e9 100644 --- a/webrtc/modules/rtp_rtcp/source/flexfec_receiver_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/flexfec_receiver_unittest.cc @@ -11,12 +11,12 @@ #include #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" #include "webrtc/modules/rtp_rtcp/mocks/mock_recovered_packet_receiver.h" #include "webrtc/modules/rtp_rtcp/source/fec_test_helper.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h" +#include "webrtc/rtc_base/basictypes.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc b/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc index 7c69a99655..214304f963 100644 --- a/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc +++ b/webrtc/modules/rtp_rtcp/source/flexfec_sender.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/forward_error_correction.cc b/webrtc/modules/rtp_rtcp/source/forward_error_correction.cc index a2d0e6dc9c..7e524bf95a 100644 --- a/webrtc/modules/rtp_rtcp/source/forward_error_correction.cc +++ b/webrtc/modules/rtp_rtcp/source/forward_error_correction.cc @@ -16,13 +16,13 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h" #include "webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/forward_error_correction.h b/webrtc/modules/rtp_rtcp/source/forward_error_correction.h index e70d7db493..673d15bfbc 100644 --- a/webrtc/modules/rtp_rtcp/source/forward_error_correction.h +++ b/webrtc/modules/rtp_rtcp/source/forward_error_correction.h @@ -17,12 +17,12 @@ #include #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/refcount.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/refcount.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.cc b/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.cc index faef7716fd..31fde0aec6 100644 --- a/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.cc +++ b/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.cc @@ -15,9 +15,9 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/rtp_rtcp/source/fec_private_tables_bursty.h" #include "webrtc/modules/rtp_rtcp/source/fec_private_tables_random.h" +#include "webrtc/rtc_base/checks.h" namespace { using webrtc::fec_private_tables::kPacketMaskBurstyTbl; diff --git a/webrtc/modules/rtp_rtcp/source/nack_rtx_unittest.cc b/webrtc/modules/rtp_rtcp/source/nack_rtx_unittest.cc index b987f114d2..32c9d5b9e8 100644 --- a/webrtc/modules/rtp_rtcp/source/nack_rtx_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/nack_rtx_unittest.cc @@ -15,7 +15,6 @@ #include #include "webrtc/api/call/transport.h" -#include "webrtc/base/rate_limiter.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/include/receive_statistics.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" @@ -23,6 +22,7 @@ #include "webrtc/modules/rtp_rtcp/include/rtp_receiver.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/rate_limiter.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/packet_loss_stats.cc b/webrtc/modules/rtp_rtcp/source/packet_loss_stats.cc index 1def671f20..12f8bfa1cd 100644 --- a/webrtc/modules/rtp_rtcp/source/packet_loss_stats.cc +++ b/webrtc/modules/rtp_rtcp/source/packet_loss_stats.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" // After this many packets are added, adding additional packets will cause the // oldest packets to be pruned from the buffer. diff --git a/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.cc b/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.cc index f1afc1f45b..a85f7e9053 100644 --- a/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.cc +++ b/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h b/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h index 013d1c1375..26a616509d 100644 --- a/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h +++ b/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/playout_delay_oracle_unittest.cc b/webrtc/modules/rtp_rtcp/source/playout_delay_oracle_unittest.cc index b4a0189887..e7034b0e09 100644 --- a/webrtc/modules/rtp_rtcp/source/playout_delay_oracle_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/playout_delay_oracle_unittest.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/receive_statistics_impl.h b/webrtc/modules/rtp_rtcp/source/receive_statistics_impl.h index 913f3b5041..c698862b93 100644 --- a/webrtc/modules/rtp_rtcp/source/receive_statistics_impl.h +++ b/webrtc/modules/rtp_rtcp/source/receive_statistics_impl.h @@ -16,8 +16,8 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/rate_statistics.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/rate_statistics.h" #include "webrtc/system_wrappers/include/ntp_time.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc b/webrtc/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc index c78a8bc844..b39c5a616f 100644 --- a/webrtc/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc +++ b/webrtc/modules/rtp_rtcp/source/remote_ntp_time_estimator.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/timestamp_extrapolator.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet.cc index a2d99e7143..7d409718bd 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet.h index 86ed11d42a..f99b5b9290 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_H_ -#include "webrtc/base/basictypes.h" -#include "webrtc/base/buffer.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/buffer.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/app.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/app.cc index e9d107811f..8d02dfc416 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/app.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/app.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/app.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/app.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/app.h index 1261e8456f..7368b7cc97 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/app.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/app.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_APP_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_APP_H_ -#include "webrtc/base/buffer.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" +#include "webrtc/rtc_base/buffer.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.cc index 965fde282a..d5c204d993 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.cc index 69d78ce4bb..9971208e78 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h index b4ce511b5f..a36b1991db 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h @@ -10,7 +10,7 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_COMMON_HEADER_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_COMMON_HEADER_H_ -#include "webrtc/base/basictypes.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/compound_packet.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/compound_packet.cc index d5bbee6c91..28437c82ed 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/compound_packet.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/compound_packet.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/compound_packet.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/compound_packet.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/compound_packet.h index 5bb23dd185..ea32b351b6 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/compound_packet.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/compound_packet.h @@ -14,9 +14,9 @@ #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.cc index 80b44d51eb..b7ca58c52a 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h index 840ca37b6f..16bc115742 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h @@ -14,7 +14,7 @@ #include -#include "webrtc/base/basictypes.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_jitter_report.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_jitter_report.cc index f7798dc3a1..575184fbfd 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_jitter_report.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_jitter_report.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.cc index d559eefd9d..eb84cd79be 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.h index cb34f370c5..aed304f74b 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.h @@ -13,12 +13,12 @@ #include -#include "webrtc/base/optional.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports_unittest.cc index 905462ace9..08ffd49458 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports_unittest.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.h" -#include "webrtc/base/random.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" #include "webrtc/test/rtcp_packet_parser.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/fir.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/fir.cc index 069a13c64a..5beb16fc45 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/fir.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/fir.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/fir.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/fir.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/fir.h index 8d772d87fa..0f1169793d 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/fir.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/fir.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.cc index a51764f04b..478f8dc477 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h index 2b5acec0ea..44d0f74aa1 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.cc index ade6c2a874..3db3394f6d 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h index c3682bdcaa..e464891dfd 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h @@ -10,8 +10,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h index 762dc61138..96ad413516 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h @@ -12,8 +12,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PSFB_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PSFB_H_ -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.cc index 1ec6826e6b..943c238694 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h index ba101a3b09..0a1108390d 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rapid_resync_request.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RAPID_RESYNC_REQUEST_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RAPID_RESYNC_REQUEST_H_ -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.cc index 03a9dbd86e..c192807180 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.h index 2b8b190293..85ab8ebd34 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/receiver_report.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.cc index c6f89728ff..8e2eceb72d 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.h index 42c2a96ce1..062effab1a 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/remb.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.cc index e597748027..9589d89579 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h index bdc3cbcd1f..0156cc0151 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h @@ -12,7 +12,7 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_REPORT_BLOCK_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_REPORT_BLOCK_H_ -#include "webrtc/base/basictypes.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block_unittest.cc index b6a0ab7bd8..9d6117a744 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block_unittest.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/random.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" using webrtc::rtcp::ReportBlock; diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.cc index db4ae67326..0f81f3a8ba 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.h index f123aaf4f1..b87efe8f77 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.h @@ -12,7 +12,7 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RRTR_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RRTR_H_ -#include "webrtc/base/basictypes.h" +#include "webrtc/rtc_base/basictypes.h" #include "webrtc/system_wrappers/include/ntp_time.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h index b34e4a02d6..734ed9aaa9 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h @@ -12,8 +12,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RTPFB_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_RTPFB_H_ -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.cc index 2e395d7297..e74746707c 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.cc @@ -12,10 +12,10 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h index 34885dc00d..5ce518e4a2 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/sdes.h @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/sender_report.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/sender_report.cc index 3cadd431b3..59c08c3c66 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/sender_report.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/sender_report.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/sender_report.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.cc index 1a00006fe0..7f1fae4395 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.h index d7c49a9a44..0781a6bcae 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/basictypes.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate_unittest.cc index 2c5098d274..75efe31c78 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate_unittest.cc @@ -10,11 +10,11 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/target_bitrate.h" -#include "webrtc/base/buffer.h" -#include "webrtc/test/gtest.h" -#include "webrtc/test/rtcp_packet_parser.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/extended_reports.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/test/gtest.h" +#include "webrtc/test/rtcp_packet_parser.h" namespace webrtc { namespace { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.cc index b15615267e..97e361a240 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h index c77bb761dd..31071c0730 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_TMMB_ITEM_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_TMMB_ITEM_H_ -#include "webrtc/base/basictypes.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.cc index d9c3227ddb..3f26983353 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.h index 8b32366e24..3a06e44a1e 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbn.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.cc index fd0719ea5e..96abf8143e 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.h index 4d1bf11e06..4209ddf96c 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmbr.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rtpfb.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.cc index 796577cc59..057fe55801 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.cc @@ -12,12 +12,12 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.cc index a79d48e1ca..1b3bbf3fa7 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.h index 62c26fef37..7409b4e652 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/voip_metric.h @@ -12,8 +12,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_VOIP_METRIC_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_VOIP_METRIC_H_ -#include "webrtc/base/basictypes.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { namespace rtcp { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc index 4a3235fffe..5172a802bd 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc @@ -18,9 +18,6 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" #include "webrtc/common_types.h" #include "webrtc/common_video/include/video_bitrate_allocator.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h" @@ -41,6 +38,9 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" #include "webrtc/modules/rtp_rtcp/source/time_util.h" #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" #include "webrtc/system_wrappers/include/ntp_time.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h index 1c657a2fc4..33b2b30ad6 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h @@ -16,11 +16,11 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_nack_stats.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/system_wrappers/include/ntp_time.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtcp_receiver_unittest.cc index d419caffeb..bc5597f9d4 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver_unittest.cc @@ -10,9 +10,6 @@ #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/array_view.h" -#include "webrtc/base/random.h" #include "webrtc/common_types.h" #include "webrtc/common_video/include/video_bitrate_allocator.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" @@ -34,6 +31,9 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_receiver.h" #include "webrtc/modules/rtp_rtcp/source/time_util.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/ntp_time.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_sender.cc b/webrtc/modules/rtp_rtcp/source/rtcp_sender.cc index f3ecefcd08..93d7aa3c1f 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_sender.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_sender.cc @@ -14,10 +14,6 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" #include "webrtc/common_types.h" #include "webrtc/logging/rtc_event_log/rtc_event_log.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/app.h" @@ -37,6 +33,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h" #include "webrtc/modules/rtp_rtcp/source/time_util.h" #include "webrtc/modules/rtp_rtcp/source/tmmbr_help.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_sender.h b/webrtc/modules/rtp_rtcp/source/rtcp_sender.h index ece186425f..9ab763ae40 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_sender.h +++ b/webrtc/modules/rtp_rtcp/source/rtcp_sender.h @@ -19,11 +19,6 @@ #include #include "webrtc/api/call/transport.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/random.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/modules/rtp_rtcp/include/receive_statistics.h" @@ -33,6 +28,11 @@ #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/dlrr.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/report_block.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/tmmb_item.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc index 2b368284ae..223e06b35d 100644 --- a/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc @@ -10,12 +10,12 @@ #include -#include "webrtc/base/rate_limiter.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/bye.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/common_header.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_sender.h" #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h" +#include "webrtc/rtc_base/rate_limiter.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" #include "webrtc/test/mock_transport.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtp_fec_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtp_fec_unittest.cc index 11b6849ef0..99f16699f3 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_fec_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_fec_unittest.cc @@ -12,13 +12,13 @@ #include #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/random.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/fec_test_helper.h" #include "webrtc/modules/rtp_rtcp/source/flexfec_header_reader_writer.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format.h b/webrtc/modules/rtp_rtcp/source/rtp_format.h index 9fa3df5b94..378f38a29b 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_format.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { class RtpPacketToSend; diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc b/webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc index 68e54f1432..092ac1cc49 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc @@ -15,15 +15,15 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/modules/include/module_common_types.h" -#include "webrtc/modules/rtp_rtcp/source/byte_io.h" -#include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" -#include "webrtc/common_video/h264/sps_vui_rewriter.h" #include "webrtc/common_video/h264/h264_common.h" #include "webrtc/common_video/h264/pps_parser.h" #include "webrtc/common_video/h264/sps_parser.h" +#include "webrtc/common_video/h264/sps_vui_rewriter.h" +#include "webrtc/modules/include/module_common_types.h" +#include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_h264.h b/webrtc/modules/rtp_rtcp/source/rtp_format_h264.h index 7047885d8d..3742ec5d36 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_h264.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_h264.h @@ -16,9 +16,9 @@ #include #include -#include "webrtc/base/buffer.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc index c45c212d1c..ec486c05a0 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_h264_unittest.cc @@ -11,13 +11,13 @@ #include #include -#include "webrtc/base/array_view.h" #include "webrtc/common_video/h264/h264_common.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc b/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc index ab3c5ef2c1..696dc2bd35 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.cc @@ -10,10 +10,10 @@ #include -#include "webrtc/base/logging.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h b/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h index 25e72809f9..16d92e7a0c 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h @@ -12,9 +12,9 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc index 21fa92224d..91ad00138a 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc @@ -13,12 +13,12 @@ #include #include -#include "webrtc/base/array_view.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/array_view.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc b/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc index 1139a8d34a..e744ff4b4a 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc @@ -17,8 +17,8 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h b/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h index 25a2739dc7..edb3d4d18f 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h @@ -29,9 +29,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.h b/webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.h index c71ba71af3..4acccd28a9 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.h @@ -18,10 +18,10 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_TEST_HELPER_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_TEST_HELPER_H_ -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc b/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc index fe911a27b9..6f02010172 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.cc @@ -15,10 +15,10 @@ #include -#include "webrtc/base/bitbuffer.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/bitbuffer.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #define RETURN_FALSE_ON_ERROR(x) \ if (!(x)) { \ diff --git a/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.h b/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.h index ad49782aa6..7b0b06c884 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_format_vp9.h @@ -24,9 +24,9 @@ #include #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_header_extension_map.cc b/webrtc/modules/rtp_rtcp/source/rtp_header_extension_map.cc index 9b30a5e596..18ee7e0f6c 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_header_extension_map.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_header_extension_map.cc @@ -10,11 +10,11 @@ #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc b/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc index f630bafe28..a5adf7ae7c 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/include/rtp_cvo.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { // Absolute send time in RTP streams. diff --git a/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h b/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h index c0a4bca913..8819d0441e 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h @@ -16,8 +16,8 @@ #include "webrtc/api/video/video_content_type.h" #include "webrtc/api/video/video_rotation.h" #include "webrtc/api/video/video_timing.h" -#include "webrtc/base/array_view.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/array_view.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_header_parser.cc b/webrtc/modules/rtp_rtcp/source/rtp_header_parser.cc index 1206d407f6..be940a6066 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_header_parser.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_header_parser.cc @@ -9,9 +9,9 @@ */ #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_packet.cc b/webrtc/modules/rtp_rtcp/source/rtp_packet.cc index 0ccf05e3bf..78fa0d2ed6 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_packet.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_packet.cc @@ -13,13 +13,13 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/random.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/random.h" namespace webrtc { namespace rtp { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_packet.h b/webrtc/modules/rtp_rtcp/source/rtp_packet.h index 648e9f2e4a..47aaf574ff 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_packet.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_packet.h @@ -12,10 +12,10 @@ #include -#include "webrtc/base/array_view.h" -#include "webrtc/base/basictypes.h" -#include "webrtc/base/copyonwritebuffer.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/copyonwritebuffer.h" namespace webrtc { struct RTPHeader; diff --git a/webrtc/modules/rtp_rtcp/source/rtp_packet_history.cc b/webrtc/modules/rtp_rtcp/source/rtp_packet_history.cc index 19b98a69f3..0dd80cbbb7 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_packet_history.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_packet_history.cc @@ -14,9 +14,9 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_packet_history.h b/webrtc/modules/rtp_rtcp/source/rtp_packet_history.h index dc2b35a375..bffeb5c938 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_packet_history.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_packet_history.h @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_packet_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtp_packet_unittest.cc index 44730fe9dd..10c94f50d8 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_packet_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_packet_unittest.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" -#include "webrtc/base/random.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtp_payload_registry.cc b/webrtc/modules/rtp_rtcp/source/rtp_payload_registry.cc index 234fd7fce5..35616b6122 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_payload_registry.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_payload_registry.cc @@ -12,12 +12,12 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/stringutils.h" #include "webrtc/common_types.h" #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/stringutils.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.cc b/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.cc index 7b66fd3490..4265ba5654 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.cc @@ -15,8 +15,8 @@ #include // memcpy() #include "webrtc/common_types.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { RTPReceiverStrategy* RTPReceiverStrategy::CreateAudioStrategy( diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h b/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h index 5fbf738b4b..fd8238aeaf 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h @@ -13,11 +13,11 @@ #include -#include "webrtc/base/onetimeevent.h" #include "webrtc/modules/rtp_rtcp/include/rtp_receiver.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/onetimeevent.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc b/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc index 01ccd2b260..20f57460a6 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc @@ -18,11 +18,11 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.h b/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.h index 43965d325c..b64683a17c 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.h @@ -16,10 +16,10 @@ #include #include -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/rtp_rtcp/include/rtp_receiver.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h b/webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h index 490b4c59d5..f909b85aec 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_STRATEGY_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_STRATEGY_H_ -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_video.cc b/webrtc/modules/rtp_rtcp/source/rtp_receiver_video.cc index 0edc47824c..845e7ac496 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_video.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_video.cc @@ -15,14 +15,14 @@ #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/rtp_rtcp/include/rtp_cvo.h" #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_video.h b/webrtc/modules/rtp_rtcp/source/rtp_receiver_video.h index c27fe45c82..a243484fcf 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_video.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_video.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_VIDEO_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_VIDEO_H_ -#include "webrtc/base/onetimeevent.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/onetimeevent.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc index a6c7647be5..f5cbdc2440 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc @@ -15,10 +15,10 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/common_types.h" #include "webrtc/config.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #ifdef _WIN32 // Disable warning C4355: 'this' : used in base member initializer list. diff --git a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h index 0c46e40e1e..c6dfd6b717 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h @@ -16,15 +16,15 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/gtest_prod_util.h" -#include "webrtc/base/optional.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/packet_loss_stats.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_receiver.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_sender.h" #include "webrtc/modules/rtp_rtcp/source/rtp_sender.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/gtest_prod_util.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc index 73bdd7a5ab..61320ebadb 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc @@ -12,13 +12,13 @@ #include #include -#include "webrtc/base/rate_limiter.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h" #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h" +#include "webrtc/rtc_base/rate_limiter.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" #include "webrtc/test/rtcp_packet_parser.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender.cc b/webrtc/modules/rtp_rtcp/source/rtp_sender.cc index 759bc9c980..7fbd9aeb41 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_sender.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender.cc @@ -13,13 +13,6 @@ #include #include -#include "webrtc/base/arraysize.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/rate_limiter.h" -#include "webrtc/base/safe_minmax.h" -#include "webrtc/base/timeutils.h" -#include "webrtc/base/trace_event.h" #include "webrtc/logging/rtc_event_log/rtc_event_log.h" #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" #include "webrtc/modules/rtp_rtcp/include/rtp_cvo.h" @@ -30,6 +23,13 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_sender_audio.h" #include "webrtc/modules/rtp_rtcp/source/rtp_sender_video.h" #include "webrtc/modules/rtp_rtcp/source/time_util.h" +#include "webrtc/rtc_base/arraysize.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/rate_limiter.h" +#include "webrtc/rtc_base/safe_minmax.h" +#include "webrtc/rtc_base/timeutils.h" +#include "webrtc/rtc_base/trace_event.h" #include "webrtc/system_wrappers/include/field_trial.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender.h b/webrtc/modules/rtp_rtcp/source/rtp_sender.h index 83bdc64c8f..bed80e4f34 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_sender.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender.h @@ -17,14 +17,6 @@ #include #include "webrtc/api/call/transport.h" -#include "webrtc/base/array_view.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/deprecation.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/random.h" -#include "webrtc/base/rate_statistics.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/include/flexfec_sender.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" @@ -33,6 +25,14 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_packet_history.h" #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/array_view.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/deprecation.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/rate_statistics.h" +#include "webrtc/rtc_base/thread_annotations.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender_audio.cc b/webrtc/modules/rtp_rtcp/source/rtp_sender_audio.cc index 0f32d4e786..04c776ce40 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_sender_audio.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender_audio.cc @@ -15,13 +15,13 @@ #include #include -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender_audio.h b/webrtc/modules/rtp_rtcp/source/rtp_sender_audio.h index cf79120bb9..8529e0d48c 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_sender_audio.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender_audio.h @@ -12,13 +12,13 @@ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_AUDIO_H_ #include "webrtc/common_types.h" -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/onetimeevent.h" #include "webrtc/modules/rtp_rtcp/source/dtmf_queue.h" #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" #include "webrtc/modules/rtp_rtcp/source/rtp_sender.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/onetimeevent.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc index bcfa650c02..069daf86df 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc @@ -11,8 +11,6 @@ #include #include -#include "webrtc/base/buffer.h" -#include "webrtc/base/rate_limiter.h" #include "webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h" #include "webrtc/modules/rtp_rtcp/include/rtp_cvo.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" @@ -26,6 +24,8 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_sender.h" #include "webrtc/modules/rtp_rtcp/source/rtp_sender_video.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/rate_limiter.h" #include "webrtc/test/field_trial.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc index 94503dcdf1..d12936c143 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.cc @@ -17,10 +17,6 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/ptr_util.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtp_format_video_generic.h" @@ -28,6 +24,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp9.h" #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h" #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/ptr_util.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h index 933eeb0440..9fb4648b82 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender_video.h @@ -15,12 +15,6 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/onetimeevent.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/rate_statistics.h" -#include "webrtc/base/sequenced_task_checker.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/include/flexfec_sender.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" @@ -29,6 +23,12 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" #include "webrtc/modules/rtp_rtcp/source/ulpfec_generator.h" #include "webrtc/modules/rtp_rtcp/source/video_codec_information.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/onetimeevent.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/rate_statistics.h" +#include "webrtc/rtc_base/sequenced_task_checker.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_utility.cc b/webrtc/modules/rtp_rtcp/source/rtp_utility.cc index f959087c99..8a8be1019a 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_utility.cc +++ b/webrtc/modules/rtp_rtcp/source/rtp_utility.cc @@ -10,10 +10,10 @@ #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/include/rtp_cvo.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/rtp_utility.h b/webrtc/modules/rtp_rtcp/source/rtp_utility.h index 65339aa88c..81bec5f642 100644 --- a/webrtc/modules/rtp_rtcp/source/rtp_utility.h +++ b/webrtc/modules/rtp_rtcp/source/rtp_utility.h @@ -13,11 +13,11 @@ #include -#include "webrtc/base/deprecation.h" #include "webrtc/modules/rtp_rtcp/include/receive_statistics.h" #include "webrtc/modules/rtp_rtcp/include/rtp_header_extension_map.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_config.h" +#include "webrtc/rtc_base/deprecation.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/tmmbr_help.cc b/webrtc/modules/rtp_rtcp/source/tmmbr_help.cc index 7c99091254..2390d066a0 100644 --- a/webrtc/modules/rtp_rtcp/source/tmmbr_help.cc +++ b/webrtc/modules/rtp_rtcp/source/tmmbr_help.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { std::vector TMMBRHelp::FindBoundingSet( diff --git a/webrtc/modules/rtp_rtcp/source/ulpfec_generator.cc b/webrtc/modules/rtp_rtcp/source/ulpfec_generator.cc index 4aa5331d6d..fa7505ebbf 100644 --- a/webrtc/modules/rtp_rtcp/source/ulpfec_generator.cc +++ b/webrtc/modules/rtp_rtcp/source/ulpfec_generator.cc @@ -13,11 +13,11 @@ #include #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/ulpfec_generator_unittest.cc b/webrtc/modules/rtp_rtcp/source/ulpfec_generator_unittest.cc index 3712a373a5..5d281aac2e 100644 --- a/webrtc/modules/rtp_rtcp/source/ulpfec_generator_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/ulpfec_generator_unittest.cc @@ -13,11 +13,11 @@ #include #include -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/fec_test_helper.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/modules/rtp_rtcp/source/ulpfec_generator.h" +#include "webrtc/rtc_base/basictypes.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.cc b/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.cc index f3cf70f002..3a6000a200 100644 --- a/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.cc +++ b/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.cc @@ -12,9 +12,9 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.h b/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.h index 4e771aac3b..2c1994dc21 100644 --- a/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.h +++ b/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_ULPFEC_HEADER_READER_WRITER_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_ULPFEC_HEADER_READER_WRITER_H_ -#include "webrtc/base/basictypes.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" +#include "webrtc/rtc_base/basictypes.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer_unittest.cc b/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer_unittest.cc index 13774de13f..8eebf38c67 100644 --- a/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer_unittest.cc +++ b/webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer_unittest.cc @@ -13,14 +13,14 @@ #include #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/random.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h" #include "webrtc/modules/rtp_rtcp/source/ulpfec_header_reader_writer.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.cc b/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.cc index 5bac59c9d7..b4ac30e040 100644 --- a/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.cc +++ b/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtp_receiver_video.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h b/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h index 37085726b1..e4f71ffb71 100644 --- a/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h +++ b/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/include/ulpfec_receiver.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc b/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc index b8b67c703f..b39c8d72da 100644 --- a/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc +++ b/webrtc/modules/rtp_rtcp/test/testAPI/test_api.cc @@ -14,8 +14,8 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/rate_limiter.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/rate_limiter.h" #include "webrtc/test/null_transport.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc index 548e4fa584..a9be072feb 100644 --- a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc +++ b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc @@ -12,12 +12,12 @@ #include #include -#include "webrtc/base/rate_limiter.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h" #include "webrtc/modules/rtp_rtcp/test/testAPI/test_api.h" +#include "webrtc/rtc_base/rate_limiter.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc index fab92316cf..a124f62725 100644 --- a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc +++ b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_rtcp.cc @@ -12,13 +12,13 @@ #include #include -#include "webrtc/base/rate_limiter.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/include/receive_statistics.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" #include "webrtc/modules/rtp_rtcp/source/rtp_receiver_audio.h" #include "webrtc/modules/rtp_rtcp/test/testAPI/test_api.h" +#include "webrtc/rtc_base/rate_limiter.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_video.cc b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_video.cc index 447b4b7ac1..e6b075f0f7 100644 --- a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_video.cc +++ b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_video.cc @@ -14,7 +14,6 @@ #include #include -#include "webrtc/base/rate_limiter.h" #include "webrtc/common_types.h" #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" @@ -22,6 +21,7 @@ #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/rtp_receiver_video.h" #include "webrtc/modules/rtp_rtcp/test/testAPI/test_api.h" +#include "webrtc/rtc_base/rate_limiter.h" #include "webrtc/test/gtest.h" namespace { diff --git a/webrtc/modules/rtp_rtcp/test/testFec/test_fec.cc b/webrtc/modules/rtp_rtcp/test/testFec/test_fec.cc index b23a5f5f9b..c698d676ec 100644 --- a/webrtc/modules/rtp_rtcp/test/testFec/test_fec.cc +++ b/webrtc/modules/rtp_rtcp/test/testFec/test_fec.cc @@ -18,10 +18,10 @@ #include -#include "webrtc/base/random.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/utility/include/jvm_android.h b/webrtc/modules/utility/include/jvm_android.h index fcdb1baca7..95e31eea24 100644 --- a/webrtc/modules/utility/include/jvm_android.h +++ b/webrtc/modules/utility/include/jvm_android.h @@ -16,8 +16,8 @@ #include #include -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/utility/include/helpers_android.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/utility/include/mock/mock_process_thread.h b/webrtc/modules/utility/include/mock/mock_process_thread.h index 4d24033ff9..27d1b106d7 100644 --- a/webrtc/modules/utility/include/mock/mock_process_thread.h +++ b/webrtc/modules/utility/include/mock/mock_process_thread.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/location.h" #include "webrtc/modules/utility/include/process_thread.h" +#include "webrtc/rtc_base/location.h" #include "webrtc/test/gmock.h" namespace webrtc { diff --git a/webrtc/modules/utility/include/process_thread.h b/webrtc/modules/utility/include/process_thread.h index 2132ee453c..6fa4e79bcd 100644 --- a/webrtc/modules/utility/include/process_thread.h +++ b/webrtc/modules/utility/include/process_thread.h @@ -18,7 +18,7 @@ #if defined(WEBRTC_WIN) // Due to a bug in the std::unique_ptr implementation that ships with MSVS, // we need the full definition of QueuedTask, on Windows. -#include "webrtc/base/task_queue.h" +#include "webrtc/rtc_base/task_queue.h" #else namespace rtc { class QueuedTask; diff --git a/webrtc/modules/utility/source/helpers_android.cc b/webrtc/modules/utility/source/helpers_android.cc index aea35f8d5a..59f4a69d9c 100644 --- a/webrtc/modules/utility/source/helpers_android.cc +++ b/webrtc/modules/utility/source/helpers_android.cc @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/checks.h" #include "webrtc/modules/utility/include/helpers_android.h" +#include "webrtc/rtc_base/checks.h" #include #include diff --git a/webrtc/modules/utility/source/jvm_android.cc b/webrtc/modules/utility/source/jvm_android.cc index d432a063a4..a7a5efdc8b 100644 --- a/webrtc/modules/utility/source/jvm_android.cc +++ b/webrtc/modules/utility/source/jvm_android.cc @@ -14,7 +14,7 @@ #include "webrtc/modules/utility/include/jvm_android.h" -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" #define TAG "JVM" #define ALOGD(...) __android_log_print(ANDROID_LOG_DEBUG, TAG, __VA_ARGS__) diff --git a/webrtc/modules/utility/source/process_thread_impl.cc b/webrtc/modules/utility/source/process_thread_impl.cc index f59a451bde..2f8be6c210 100644 --- a/webrtc/modules/utility/source/process_thread_impl.cc +++ b/webrtc/modules/utility/source/process_thread_impl.cc @@ -10,11 +10,11 @@ #include "webrtc/modules/utility/source/process_thread_impl.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/task_queue.h" -#include "webrtc/base/timeutils.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/include/module.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/task_queue.h" +#include "webrtc/rtc_base/timeutils.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { namespace { diff --git a/webrtc/modules/utility/source/process_thread_impl.h b/webrtc/modules/utility/source/process_thread_impl.h index e07c3d7c8b..4f4c65da8c 100644 --- a/webrtc/modules/utility/source/process_thread_impl.h +++ b/webrtc/modules/utility/source/process_thread_impl.h @@ -15,11 +15,11 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/location.h" -#include "webrtc/base/platform_thread.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/utility/include/process_thread.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/location.h" +#include "webrtc/rtc_base/platform_thread.h" +#include "webrtc/rtc_base/thread_checker.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/typedefs.h" diff --git a/webrtc/modules/utility/source/process_thread_impl_unittest.cc b/webrtc/modules/utility/source/process_thread_impl_unittest.cc index 8b0fb968f8..e594de0f87 100644 --- a/webrtc/modules/utility/source/process_thread_impl_unittest.cc +++ b/webrtc/modules/utility/source/process_thread_impl_unittest.cc @@ -11,11 +11,11 @@ #include #include -#include "webrtc/base/location.h" -#include "webrtc/base/task_queue.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/include/module.h" #include "webrtc/modules/utility/source/process_thread_impl.h" +#include "webrtc/rtc_base/location.h" +#include "webrtc/rtc_base/task_queue.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/video_capture/device_info_impl.cc b/webrtc/modules/video_capture/device_info_impl.cc index 35434c00fd..d9e5879aa3 100644 --- a/webrtc/modules/video_capture/device_info_impl.cc +++ b/webrtc/modules/video_capture/device_info_impl.cc @@ -11,9 +11,9 @@ #include #include -#include "webrtc/base/logging.h" #include "webrtc/modules/video_capture/device_info_impl.h" #include "webrtc/modules/video_capture/video_capture_config.h" +#include "webrtc/rtc_base/logging.h" #ifndef abs #define abs(a) (a>=0?a:-a) diff --git a/webrtc/modules/video_capture/external/video_capture_external.cc b/webrtc/modules/video_capture/external/video_capture_external.cc index 828179a555..e1f4a54f23 100644 --- a/webrtc/modules/video_capture/external/video_capture_external.cc +++ b/webrtc/modules/video_capture/external/video_capture_external.cc @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/refcount.h" #include "webrtc/modules/video_capture/video_capture_impl.h" +#include "webrtc/rtc_base/refcount.h" namespace webrtc { diff --git a/webrtc/modules/video_capture/linux/video_capture_linux.cc b/webrtc/modules/video_capture/linux/video_capture_linux.cc index 894f03886a..a2058d2590 100644 --- a/webrtc/modules/video_capture/linux/video_capture_linux.cc +++ b/webrtc/modules/video_capture/linux/video_capture_linux.cc @@ -21,9 +21,9 @@ #include #include -#include "webrtc/base/refcount.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/video_capture/linux/video_capture_linux.h" +#include "webrtc/rtc_base/refcount.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" #include "webrtc/system_wrappers/include/trace.h" namespace webrtc { diff --git a/webrtc/modules/video_capture/linux/video_capture_linux.h b/webrtc/modules/video_capture/linux/video_capture_linux.h index 6a37048053..dc500597ad 100644 --- a/webrtc/modules/video_capture/linux/video_capture_linux.h +++ b/webrtc/modules/video_capture/linux/video_capture_linux.h @@ -13,10 +13,10 @@ #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/platform_thread.h" #include "webrtc/common_types.h" #include "webrtc/modules/video_capture/video_capture_impl.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/platform_thread.h" namespace webrtc { diff --git a/webrtc/modules/video_capture/objc/video_capture.h b/webrtc/modules/video_capture/objc/video_capture.h index 325d5117c1..910455b407 100644 --- a/webrtc/modules/video_capture/objc/video_capture.h +++ b/webrtc/modules/video_capture/objc/video_capture.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_VIDEO_CAPTURE_OBJC_VIDEO_CAPTURE_H_ #define WEBRTC_MODULES_VIDEO_CAPTURE_OBJC_VIDEO_CAPTURE_H_ -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/video_capture/video_capture_impl.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" @class RTCVideoCaptureIosObjC; diff --git a/webrtc/modules/video_capture/test/video_capture_unittest.cc b/webrtc/modules/video_capture/test/video_capture_unittest.cc index 5dbcc35ed7..a80039a599 100644 --- a/webrtc/modules/video_capture/test/video_capture_unittest.cc +++ b/webrtc/modules/video_capture/test/video_capture_unittest.cc @@ -16,13 +16,13 @@ #include "webrtc/api/video/i420_buffer.h" #include "webrtc/api/video/video_frame.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/scoped_ref_ptr.h" -#include "webrtc/base/timeutils.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" #include "webrtc/modules/utility/include/process_thread.h" #include "webrtc/modules/video_capture/video_capture.h" #include "webrtc/modules/video_capture/video_capture_factory.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/sleep.h" #include "webrtc/test/frame_utils.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/video_capture/video_capture_impl.cc b/webrtc/modules/video_capture/video_capture_impl.cc index 5ee10665e7..d827ae6366 100644 --- a/webrtc/modules/video_capture/video_capture_impl.cc +++ b/webrtc/modules/video_capture/video_capture_impl.cc @@ -13,13 +13,13 @@ #include #include "webrtc/api/video/i420_buffer.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/refcount.h" -#include "webrtc/base/timeutils.h" -#include "webrtc/base/trace_event.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/video_capture/video_capture_config.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/refcount.h" +#include "webrtc/rtc_base/timeutils.h" +#include "webrtc/rtc_base/trace_event.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_capture/video_capture_impl.h b/webrtc/modules/video_capture/video_capture_impl.h index 2cdb93eb8e..923397a8e8 100644 --- a/webrtc/modules/video_capture/video_capture_impl.h +++ b/webrtc/modules/video_capture/video_capture_impl.h @@ -16,11 +16,11 @@ */ #include "webrtc/api/video/video_frame.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" #include "webrtc/modules/video_capture/video_capture.h" #include "webrtc/modules/video_capture/video_capture_config.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { diff --git a/webrtc/modules/video_capture/windows/sink_filter_ds.cc b/webrtc/modules/video_capture/windows/sink_filter_ds.cc index 1fca73f33c..173b05f988 100644 --- a/webrtc/modules/video_capture/windows/sink_filter_ds.cc +++ b/webrtc/modules/video_capture/windows/sink_filter_ds.cc @@ -10,9 +10,9 @@ #include "webrtc/modules/video_capture/windows/sink_filter_ds.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/platform_thread.h" #include "webrtc/modules/video_capture/windows/help_functions_ds.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/platform_thread.h" #include "webrtc/system_wrappers/include/trace.h" #include // VIDEOINFOHEADER2 diff --git a/webrtc/modules/video_capture/windows/video_capture_factory_windows.cc b/webrtc/modules/video_capture/windows/video_capture_factory_windows.cc index e7eee39e52..f53ea994f2 100644 --- a/webrtc/modules/video_capture/windows/video_capture_factory_windows.cc +++ b/webrtc/modules/video_capture/windows/video_capture_factory_windows.cc @@ -8,10 +8,10 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/refcount.h" -#include "webrtc/base/scoped_ref_ptr.h" #include "webrtc/modules/video_capture/windows/video_capture_ds.h" #include "webrtc/modules/video_capture/windows/video_capture_mf.h" +#include "webrtc/rtc_base/refcount.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" namespace webrtc { namespace videocapturemodule { diff --git a/webrtc/modules/video_coding/codec_database.cc b/webrtc/modules/video_coding/codec_database.cc index 92ae5d23b5..882e86f034 100644 --- a/webrtc/modules/video_coding/codec_database.cc +++ b/webrtc/modules/video_coding/codec_database.cc @@ -10,13 +10,13 @@ #include "webrtc/modules/video_coding/codec_database.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" #include "webrtc/modules/video_coding/codecs/i420/include/i420.h" #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" #include "webrtc/modules/video_coding/internal_defines.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace { const size_t kDefaultPayloadSize = 1440; diff --git a/webrtc/modules/video_coding/codec_timer.h b/webrtc/modules/video_coding/codec_timer.h index 3fd081b7c8..7736d71f5d 100644 --- a/webrtc/modules/video_coding/codec_timer.h +++ b/webrtc/modules/video_coding/codec_timer.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/numerics/percentile_filter.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/numerics/percentile_filter.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/h264/h264.cc b/webrtc/modules/video_coding/codecs/h264/h264.cc index 1e3a5809eb..aa9dbe5ee3 100644 --- a/webrtc/modules/video_coding/codecs/h264/h264.cc +++ b/webrtc/modules/video_coding/codecs/h264/h264.cc @@ -16,8 +16,8 @@ #include "webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h" #endif -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.cc b/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.cc index be9ae010ec..a28a841994 100644 --- a/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.cc +++ b/webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.cc @@ -21,11 +21,11 @@ extern "C" { } // extern "C" #include "webrtc/api/video/i420_buffer.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/keep_ref_until_done.h" -#include "webrtc/base/logging.h" #include "webrtc/common_video/include/video_frame_buffer.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/keep_ref_until_done.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc b/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc index cdbe6f5ecf..e84dffd4c6 100644 --- a/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc +++ b/webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.cc @@ -19,10 +19,10 @@ #include "third_party/openh264/src/codec/api/svc/codec_def.h" #include "third_party/openh264/src/codec/api/svc/codec_ver.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/metrics.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/i420/include/i420.h b/webrtc/modules/video_coding/codecs/i420/include/i420.h index 1047ae08b2..6c182d09e2 100644 --- a/webrtc/modules/video_coding/codecs/i420/include/i420.h +++ b/webrtc/modules/video_coding/codecs/i420/include/i420.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/checks.h" #include "webrtc/modules/video_coding/include/video_codec_interface.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/test/android_test_initializer.cc b/webrtc/modules/video_coding/codecs/test/android_test_initializer.cc index cb2c5c1f5b..df1dd372d9 100644 --- a/webrtc/modules/video_coding/codecs/test/android_test_initializer.cc +++ b/webrtc/modules/video_coding/codecs/test/android_test_initializer.cc @@ -10,8 +10,8 @@ #include -#include "webrtc/base/ignore_wundef.h" #include "webrtc/modules/video_coding/codecs/test/android_test_initializer.h" +#include "webrtc/rtc_base/ignore_wundef.h" #include "webrtc/sdk/android/src/jni/classreferenceholder.h" #include "webrtc/sdk/android/src/jni/jni_helpers.h" @@ -23,7 +23,7 @@ RTC_PUSH_IGNORING_WUNDEF() #include "base/android/jni_android.h" RTC_POP_IGNORING_WUNDEF() -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/test/packet_manipulator.cc b/webrtc/modules/video_coding/codecs/test/packet_manipulator.cc index 9bde45eeff..37da9dbfa9 100644 --- a/webrtc/modules/video_coding/codecs/test/packet_manipulator.cc +++ b/webrtc/modules/video_coding/codecs/test/packet_manipulator.cc @@ -13,7 +13,7 @@ #include #include -#include "webrtc/base/format_macros.h" +#include "webrtc/rtc_base/format_macros.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/video_coding/codecs/test/packet_manipulator.h b/webrtc/modules/video_coding/codecs/test/packet_manipulator.h index 9b8585cd24..0067fa93cb 100644 --- a/webrtc/modules/video_coding/codecs/test/packet_manipulator.h +++ b/webrtc/modules/video_coding/codecs/test/packet_manipulator.h @@ -13,8 +13,8 @@ #include -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/video_coding/include/video_codec_interface.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/test/testsupport/packet_reader.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/test/stats.cc b/webrtc/modules/video_coding/codecs/test/stats.cc index 2d81a9aa63..173cd16fcb 100644 --- a/webrtc/modules/video_coding/codecs/test/stats.cc +++ b/webrtc/modules/video_coding/codecs/test/stats.cc @@ -14,8 +14,8 @@ #include // min_element, max_element -#include "webrtc/base/checks.h" -#include "webrtc/base/format_macros.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/format_macros.h" namespace webrtc { namespace test { diff --git a/webrtc/modules/video_coding/codecs/test/video_codec_test.h b/webrtc/modules/video_coding/codecs/test/video_codec_test.h index 477d66d66a..efdac0caee 100644 --- a/webrtc/modules/video_coding/codecs/test/video_codec_test.h +++ b/webrtc/modules/video_coding/codecs/test/video_codec_test.h @@ -15,12 +15,12 @@ #include "webrtc/api/video_codecs/video_decoder.h" #include "webrtc/api/video_codecs/video_encoder.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/event.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/utility/vp8_header_parser.h" #include "webrtc/modules/video_coding/utility/vp9_uncompressed_header_parser.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/event.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor.cc b/webrtc/modules/video_coding/codecs/test/videoprocessor.cc index 9b8b72a42d..ef971a85d8 100644 --- a/webrtc/modules/video_coding/codecs/test/videoprocessor.cc +++ b/webrtc/modules/video_coding/codecs/test/videoprocessor.cc @@ -18,12 +18,12 @@ #include #include "webrtc/api/video/i420_buffer.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/timeutils.h" #include "webrtc/common_types.h" -#include "webrtc/modules/video_coding/include/video_codec_initializer.h" #include "webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.h" +#include "webrtc/modules/video_coding/include/video_codec_initializer.h" #include "webrtc/modules/video_coding/utility/default_video_bitrate_allocator.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/system_wrappers/include/cpu_info.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor.h b/webrtc/modules/video_coding/codecs/test/videoprocessor.h index cb15912de8..973eca3499 100644 --- a/webrtc/modules/video_coding/codecs/test/videoprocessor.h +++ b/webrtc/modules/video_coding/codecs/test/videoprocessor.h @@ -16,15 +16,15 @@ #include #include "webrtc/api/video/video_frame.h" -#include "webrtc/base/buffer.h" -#include "webrtc/base/checks.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" -#include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/codecs/test/packet_manipulator.h" #include "webrtc/modules/video_coding/codecs/test/stats.h" +#include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" #include "webrtc/modules/video_coding/utility/vp8_header_parser.h" #include "webrtc/modules/video_coding/utility/vp9_uncompressed_header_parser.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/testsupport/frame_reader.h" #include "webrtc/test/testsupport/frame_writer.h" diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.h b/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.h index 8c19ae5c30..c07c213417 100644 --- a/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.h +++ b/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.h @@ -27,9 +27,6 @@ #include "webrtc/sdk/objc/Framework/Classes/VideoToolbox/encoder.h" #endif -#include "webrtc/base/checks.h" -#include "webrtc/base/file.h" -#include "webrtc/base/logging.h" #include "webrtc/media/engine/webrtcvideodecoderfactory.h" #include "webrtc/media/engine/webrtcvideoencoderfactory.h" #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" @@ -41,6 +38,9 @@ #include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/include/video_coding.h" #include "webrtc/modules/video_coding/utility/ivf_file_writer.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/file.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" #include "webrtc/test/testsupport/frame_reader.h" diff --git a/webrtc/modules/video_coding/codecs/tools/video_quality_measurement.cc b/webrtc/modules/video_coding/codecs/tools/video_quality_measurement.cc index d8e139c670..06a8bc10cf 100644 --- a/webrtc/modules/video_coding/codecs/tools/video_quality_measurement.cc +++ b/webrtc/modules/video_coding/codecs/tools/video_quality_measurement.cc @@ -20,13 +20,13 @@ #endif #include "gflags/gflags.h" -#include "webrtc/base/format_macros.h" #include "webrtc/common_types.h" #include "webrtc/modules/video_coding/codecs/test/packet_manipulator.h" #include "webrtc/modules/video_coding/codecs/test/stats.h" #include "webrtc/modules/video_coding/codecs/test/videoprocessor.h" #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" #include "webrtc/modules/video_coding/include/video_coding.h" +#include "webrtc/rtc_base/format_macros.h" #include "webrtc/test/testsupport/frame_reader.h" #include "webrtc/test/testsupport/frame_writer.h" #include "webrtc/test/testsupport/metrics/video_metrics.h" diff --git a/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.cc b/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.cc index 3573aa8f1c..b161560d42 100644 --- a/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.cc +++ b/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.cc @@ -15,10 +15,10 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/include/module_common_types.h" -#include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/codecs/vp8/include/vp8_common_types.h" +#include "webrtc/modules/video_coding/include/video_codec_interface.h" +#include "webrtc/rtc_base/checks.h" #include "vpx/vpx_encoder.h" #include "vpx/vp8cx.h" diff --git a/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.h b/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.h index 4681fe9dc8..bf7cbfb85d 100644 --- a/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.h +++ b/webrtc/modules/video_coding/codecs/vp8/default_temporal_layers.h @@ -16,7 +16,7 @@ #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp8/screenshare_layers.cc b/webrtc/modules/video_coding/codecs/vp8/screenshare_layers.cc index a30679a36c..8a33205d30 100644 --- a/webrtc/modules/video_coding/codecs/vp8/screenshare_layers.cc +++ b/webrtc/modules/video_coding/codecs/vp8/screenshare_layers.cc @@ -13,10 +13,10 @@ #include -#include "webrtc/base/checks.h" -#include "vpx/vpx_encoder.h" #include "vpx/vp8cx.h" +#include "vpx/vpx_encoder.h" #include "webrtc/modules/video_coding/include/video_codec_interface.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/metrics.h" diff --git a/webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h b/webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h index 873846e8b2..b1a9f28dc5 100644 --- a/webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h +++ b/webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h @@ -11,10 +11,10 @@ #include -#include "webrtc/base/rate_statistics.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" #include "webrtc/modules/video_coding/utility/frame_dropper.h" +#include "webrtc/rtc_base/rate_statistics.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc b/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc index beee0be658..dbf8b258ec 100644 --- a/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc +++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc @@ -16,9 +16,9 @@ #include "libyuv/scale.h" // NOLINT #include "webrtc/api/video/i420_buffer.h" -#include "webrtc/base/checks.h" #include "webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h" #include "webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/clock.h" namespace { diff --git a/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h b/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h index 744c66a69e..784c274acf 100644 --- a/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h +++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.h @@ -18,9 +18,9 @@ #include #include -#include "webrtc/base/atomicops.h" -#include "webrtc/base/sequenced_task_checker.h" #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/sequenced_task_checker.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.cc b/webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.cc index 39c43c9b6d..edd5c1377c 100644 --- a/webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.cc +++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.cc @@ -15,7 +15,7 @@ #include #include -#include "webrtc/base/checks.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.h b/webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.h index e558290e6b..c6c2fb3fee 100644 --- a/webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.h +++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.h @@ -17,9 +17,9 @@ #include #include "webrtc/api/video_codecs/video_encoder.h" -#include "webrtc/base/constructormagic.h" #include "webrtc/common_video/include/video_bitrate_allocator.h" #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h b/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h index 5a8d21913e..69b55e52ca 100644 --- a/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h +++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_unittest.h @@ -18,7 +18,6 @@ #include "webrtc/api/video/i420_buffer.h" #include "webrtc/api/video/video_frame.h" -#include "webrtc/base/checks.h" #include "webrtc/common_video/include/video_frame.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" @@ -26,6 +25,7 @@ #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" #include "webrtc/modules/video_coding/include/mock/mock_video_codec_interface.h" #include "webrtc/modules/video_coding/include/video_coding_defines.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/test/gtest.h" using ::testing::_; diff --git a/webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc b/webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc index a3db4fdad6..7e04167370 100644 --- a/webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc +++ b/webrtc/modules/video_coding/codecs/vp8/test/vp8_impl_unittest.cc @@ -13,13 +13,13 @@ #include #include "webrtc/api/video/i420_buffer.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/timeutils.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" #include "webrtc/modules/video_coding/codecs/test/video_codec_test.h" #include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h" #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/test/frame_utils.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc index 5038e8edf4..aa334da325 100644 --- a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc +++ b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc @@ -20,10 +20,6 @@ #include "libyuv/scale.h" // NOLINT #include "libyuv/convert.h" // NOLINT -#include "webrtc/base/checks.h" -#include "webrtc/base/random.h" -#include "webrtc/base/timeutils.h" -#include "webrtc/base/trace_event.h" #include "webrtc/common_types.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" #include "webrtc/modules/include/module_common_types.h" @@ -32,6 +28,10 @@ #include "webrtc/modules/video_coding/codecs/vp8/simulcast_rate_allocator.h" #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" #include "webrtc/modules/video_coding/include/video_codec_interface.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/timeutils.h" +#include "webrtc/rtc_base/trace_event.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/field_trial.h" #include "webrtc/system_wrappers/include/metrics.h" diff --git a/webrtc/modules/video_coding/codecs/vp9/screenshare_layers.cc b/webrtc/modules/video_coding/codecs/vp9/screenshare_layers.cc index c7ed78a192..461b357c9a 100644 --- a/webrtc/modules/video_coding/codecs/vp9/screenshare_layers.cc +++ b/webrtc/modules/video_coding/codecs/vp9/screenshare_layers.cc @@ -7,9 +7,9 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include #include "webrtc/modules/video_coding/codecs/vp9/screenshare_layers.h" -#include "webrtc/base/checks.h" +#include +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc index c5d2ed9e61..ff821b94d3 100644 --- a/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc +++ b/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc @@ -15,8 +15,8 @@ #include "vpx/vpx_decoder.h" #include "vpx/vpx_frame_buffer.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.h b/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.h index af91c8c0d2..485dc5fc03 100644 --- a/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.h +++ b/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.h @@ -14,11 +14,11 @@ #include -#include "webrtc/base/basictypes.h" -#include "webrtc/base/buffer.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/refcount.h" -#include "webrtc/base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/buffer.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/refcount.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" struct vpx_codec_ctx; struct vpx_codec_frame_buffer; diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc index 8e4560a720..a8adc87071 100644 --- a/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc +++ b/webrtc/modules/video_coding/codecs/vp9/vp9_impl.cc @@ -21,15 +21,15 @@ #include "vpx/vp8cx.h" #include "vpx/vp8dx.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/keep_ref_until_done.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/random.h" -#include "webrtc/base/timeutils.h" -#include "webrtc/base/trace_event.h" #include "webrtc/common_video/include/video_frame_buffer.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" #include "webrtc/modules/video_coding/codecs/vp9/screenshare_layers.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/keep_ref_until_done.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/timeutils.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_noop.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_noop.cc index cc37e1adbb..7566a50a19 100644 --- a/webrtc/modules/video_coding/codecs/vp9/vp9_noop.cc +++ b/webrtc/modules/video_coding/codecs/vp9/vp9_noop.cc @@ -13,8 +13,8 @@ #error #endif // !defined(RTC_DISABLE_VP9) -#include "webrtc/base/checks.h" #include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc b/webrtc/modules/video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc index eaced9d97b..c8205b283f 100644 --- a/webrtc/modules/video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc +++ b/webrtc/modules/video_coding/codecs/vp9/vp9_screenshare_layers_unittest.cc @@ -12,9 +12,9 @@ #include #include "vpx/vp8cx.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/video_coding/codecs/vp9/screenshare_layers.h" #include "webrtc/modules/video_coding/codecs/vp9/vp9_impl.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/video_coding/decoding_state.cc b/webrtc/modules/video_coding/decoding_state.cc index 0c45ae3b39..f57250e901 100644 --- a/webrtc/modules/video_coding/decoding_state.cc +++ b/webrtc/modules/video_coding/decoding_state.cc @@ -10,12 +10,12 @@ #include "webrtc/modules/video_coding/decoding_state.h" -#include "webrtc/base/logging.h" #include "webrtc/common_video/h264/h264_common.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/video_coding/frame_buffer.h" #include "webrtc/modules/video_coding/jitter_buffer_common.h" #include "webrtc/modules/video_coding/packet.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/frame_buffer.cc b/webrtc/modules/video_coding/frame_buffer.cc index 11bf88a766..f67210f976 100644 --- a/webrtc/modules/video_coding/frame_buffer.cc +++ b/webrtc/modules/video_coding/frame_buffer.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/video_coding/packet.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/frame_buffer2.cc b/webrtc/modules/video_coding/frame_buffer2.cc index 1114e7cc0a..88a0e35bb6 100644 --- a/webrtc/modules/video_coding/frame_buffer2.cc +++ b/webrtc/modules/video_coding/frame_buffer2.cc @@ -14,12 +14,12 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/video_coding/include/video_coding_defines.h" #include "webrtc/modules/video_coding/jitter_estimator.h" #include "webrtc/modules/video_coding/timing.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/metrics.h" diff --git a/webrtc/modules/video_coding/frame_buffer2.h b/webrtc/modules/video_coding/frame_buffer2.h index ffeb2aa7ca..e8b8fedc8d 100644 --- a/webrtc/modules/video_coding/frame_buffer2.h +++ b/webrtc/modules/video_coding/frame_buffer2.h @@ -16,14 +16,14 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/event.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/video_coding/frame_object.h" #include "webrtc/modules/video_coding/include/video_coding_defines.h" #include "webrtc/modules/video_coding/inter_frame_delay.h" #include "webrtc/modules/video_coding/sequence_number_util.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/event.h" +#include "webrtc/rtc_base/thread_annotations.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/frame_buffer2_unittest.cc b/webrtc/modules/video_coding/frame_buffer2_unittest.cc index 58b3f7a42b..65a736901a 100644 --- a/webrtc/modules/video_coding/frame_buffer2_unittest.cc +++ b/webrtc/modules/video_coding/frame_buffer2_unittest.cc @@ -15,12 +15,12 @@ #include #include -#include "webrtc/base/platform_thread.h" -#include "webrtc/base/random.h" #include "webrtc/modules/video_coding/frame_object.h" #include "webrtc/modules/video_coding/jitter_estimator.h" #include "webrtc/modules/video_coding/sequence_number_util.h" #include "webrtc/modules/video_coding/timing.h" +#include "webrtc/rtc_base/platform_thread.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/video_coding/frame_object.cc b/webrtc/modules/video_coding/frame_object.cc index 220fa534d1..4c4537cb45 100644 --- a/webrtc/modules/video_coding/frame_object.cc +++ b/webrtc/modules/video_coding/frame_object.cc @@ -8,10 +8,10 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/checks.h" -#include "webrtc/common_video/h264/h264_common.h" #include "webrtc/modules/video_coding/frame_object.h" +#include "webrtc/common_video/h264/h264_common.h" #include "webrtc/modules/video_coding/packet_buffer.h" +#include "webrtc/rtc_base/checks.h" namespace webrtc { namespace video_coding { diff --git a/webrtc/modules/video_coding/frame_object.h b/webrtc/modules/video_coding/frame_object.h index fa0a2c1d3d..fb2cd33f18 100644 --- a/webrtc/modules/video_coding/frame_object.h +++ b/webrtc/modules/video_coding/frame_object.h @@ -11,10 +11,10 @@ #ifndef WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_ #define WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_ -#include "webrtc/base/optional.h" #include "webrtc/common_types.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/video_coding/encoded_frame.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { namespace video_coding { diff --git a/webrtc/modules/video_coding/generic_decoder.cc b/webrtc/modules/video_coding/generic_decoder.cc index 722b0b4154..a9a1e8f8af 100644 --- a/webrtc/modules/video_coding/generic_decoder.cc +++ b/webrtc/modules/video_coding/generic_decoder.cc @@ -8,13 +8,13 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" -#include "webrtc/base/trace_event.h" -#include "webrtc/modules/video_coding/include/video_coding.h" #include "webrtc/modules/video_coding/generic_decoder.h" +#include "webrtc/modules/video_coding/include/video_coding.h" #include "webrtc/modules/video_coding/internal_defines.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" +#include "webrtc/rtc_base/trace_event.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/generic_decoder.h b/webrtc/modules/video_coding/generic_decoder.h index 8e26a8b1af..033ef2d590 100644 --- a/webrtc/modules/video_coding/generic_decoder.h +++ b/webrtc/modules/video_coding/generic_decoder.h @@ -11,13 +11,13 @@ #ifndef WEBRTC_MODULES_VIDEO_CODING_GENERIC_DECODER_H_ #define WEBRTC_MODULES_VIDEO_CODING_GENERIC_DECODER_H_ -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/video_coding/encoded_frame.h" #include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/timestamp_map.h" #include "webrtc/modules/video_coding/timing.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_checker.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/generic_encoder.cc b/webrtc/modules/video_coding/generic_encoder.cc index 89dafa7728..17e4032144 100644 --- a/webrtc/modules/video_coding/generic_encoder.cc +++ b/webrtc/modules/video_coding/generic_encoder.cc @@ -13,12 +13,12 @@ #include #include "webrtc/api/video/i420_buffer.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/timeutils.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/video_coding/encoded_frame.h" #include "webrtc/modules/video_coding/media_optimization.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/timeutils.h" +#include "webrtc/rtc_base/trace_event.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/generic_encoder.h b/webrtc/modules/video_coding/generic_encoder.h index 8b33246eb9..a5c34d7404 100644 --- a/webrtc/modules/video_coding/generic_encoder.h +++ b/webrtc/modules/video_coding/generic_encoder.h @@ -18,8 +18,8 @@ #include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/include/video_coding_defines.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/race_checker.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/race_checker.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/h264_sprop_parameter_sets.cc b/webrtc/modules/video_coding/h264_sprop_parameter_sets.cc index ae298a341f..c5451030b3 100644 --- a/webrtc/modules/video_coding/h264_sprop_parameter_sets.cc +++ b/webrtc/modules/video_coding/h264_sprop_parameter_sets.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/base64.h" -#include "webrtc/base/basictypes.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/base64.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/logging.h" namespace { diff --git a/webrtc/modules/video_coding/h264_sprop_parameter_sets.h b/webrtc/modules/video_coding/h264_sprop_parameter_sets.h index 97ddcc51d1..714a29e2a1 100644 --- a/webrtc/modules/video_coding/h264_sprop_parameter_sets.h +++ b/webrtc/modules/video_coding/h264_sprop_parameter_sets.h @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/constructormagic.h" +#include "webrtc/rtc_base/constructormagic.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/h264_sps_pps_tracker.cc b/webrtc/modules/video_coding/h264_sps_pps_tracker.cc index 88b440f0b8..40284c7748 100644 --- a/webrtc/modules/video_coding/h264_sps_pps_tracker.cc +++ b/webrtc/modules/video_coding/h264_sps_pps_tracker.cc @@ -13,13 +13,13 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/common_video/h264/h264_common.h" #include "webrtc/common_video/h264/pps_parser.h" #include "webrtc/common_video/h264/sps_parser.h" #include "webrtc/modules/video_coding/frame_object.h" #include "webrtc/modules/video_coding/packet_buffer.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace video_coding { diff --git a/webrtc/modules/video_coding/jitter_buffer.cc b/webrtc/modules/video_coding/jitter_buffer.cc index c74ebe5815..a5560808dd 100644 --- a/webrtc/modules/video_coding/jitter_buffer.cc +++ b/webrtc/modules/video_coding/jitter_buffer.cc @@ -15,17 +15,17 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" -#include "webrtc/modules/video_coding/include/video_coding.h" #include "webrtc/modules/video_coding/frame_buffer.h" +#include "webrtc/modules/video_coding/include/video_coding.h" #include "webrtc/modules/video_coding/inter_frame_delay.h" #include "webrtc/modules/video_coding/internal_defines.h" #include "webrtc/modules/video_coding/jitter_buffer_common.h" #include "webrtc/modules/video_coding/jitter_estimator.h" #include "webrtc/modules/video_coding/packet.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/event_wrapper.h" #include "webrtc/system_wrappers/include/field_trial.h" diff --git a/webrtc/modules/video_coding/jitter_buffer.h b/webrtc/modules/video_coding/jitter_buffer.h index 460b8ae7f9..44794d21bc 100644 --- a/webrtc/modules/video_coding/jitter_buffer.h +++ b/webrtc/modules/video_coding/jitter_buffer.h @@ -17,18 +17,18 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/utility/include/process_thread.h" +#include "webrtc/modules/video_coding/decoding_state.h" #include "webrtc/modules/video_coding/include/video_coding.h" #include "webrtc/modules/video_coding/include/video_coding_defines.h" -#include "webrtc/modules/video_coding/decoding_state.h" #include "webrtc/modules/video_coding/inter_frame_delay.h" #include "webrtc/modules/video_coding/jitter_buffer_common.h" #include "webrtc/modules/video_coding/jitter_estimator.h" #include "webrtc/modules/video_coding/nack_module.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/jitter_buffer_unittest.cc b/webrtc/modules/video_coding/jitter_buffer_unittest.cc index 2a52eb2865..bc5201a3d0 100644 --- a/webrtc/modules/video_coding/jitter_buffer_unittest.cc +++ b/webrtc/modules/video_coding/jitter_buffer_unittest.cc @@ -14,7 +14,6 @@ #include #include -#include "webrtc/base/location.h" #include "webrtc/common_video/h264/h264_common.h" #include "webrtc/modules/video_coding/frame_buffer.h" #include "webrtc/modules/video_coding/jitter_buffer.h" @@ -22,6 +21,7 @@ #include "webrtc/modules/video_coding/packet.h" #include "webrtc/modules/video_coding/test/stream_generator.h" #include "webrtc/modules/video_coding/test/test_util.h" +#include "webrtc/rtc_base/location.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/system_wrappers/include/field_trial.h" #include "webrtc/system_wrappers/include/metrics.h" diff --git a/webrtc/modules/video_coding/jitter_estimator.h b/webrtc/modules/video_coding/jitter_estimator.h index 7ef050f032..c50c34ea50 100644 --- a/webrtc/modules/video_coding/jitter_estimator.h +++ b/webrtc/modules/video_coding/jitter_estimator.h @@ -11,8 +11,8 @@ #ifndef WEBRTC_MODULES_VIDEO_CODING_JITTER_ESTIMATOR_H_ #define WEBRTC_MODULES_VIDEO_CODING_JITTER_ESTIMATOR_H_ -#include "webrtc/base/rollingaccumulator.h" #include "webrtc/modules/video_coding/rtt_filter.h" +#include "webrtc/rtc_base/rollingaccumulator.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/media_opt_util.h b/webrtc/modules/video_coding/media_opt_util.h index ff7e485a21..7b4c4d10bd 100644 --- a/webrtc/modules/video_coding/media_opt_util.h +++ b/webrtc/modules/video_coding/media_opt_util.h @@ -16,8 +16,8 @@ #include -#include "webrtc/base/numerics/exp_filter.h" #include "webrtc/modules/video_coding/internal_defines.h" +#include "webrtc/rtc_base/numerics/exp_filter.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/media_optimization.cc b/webrtc/modules/video_coding/media_optimization.cc index f0cbd62c9b..f2e2a5c9ce 100644 --- a/webrtc/modules/video_coding/media_optimization.cc +++ b/webrtc/modules/video_coding/media_optimization.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/logging.h" #include "webrtc/modules/video_coding/utility/frame_dropper.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/media_optimization.h b/webrtc/modules/video_coding/media_optimization.h index dcca61bbf2..7731081b50 100644 --- a/webrtc/modules/video_coding/media_optimization.h +++ b/webrtc/modules/video_coding/media_optimization.h @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/video_coding/include/video_coding.h" #include "webrtc/modules/video_coding/media_opt_util.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/nack_module.cc b/webrtc/modules/video_coding/nack_module.cc index 1bd88f0fc1..e3808c29f1 100644 --- a/webrtc/modules/video_coding/nack_module.cc +++ b/webrtc/modules/video_coding/nack_module.cc @@ -13,9 +13,9 @@ #include "webrtc/modules/video_coding/nack_module.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/utility/include/process_thread.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/nack_module.h b/webrtc/modules/video_coding/nack_module.h index 6cdd0477b2..35be4c2b18 100644 --- a/webrtc/modules/video_coding/nack_module.h +++ b/webrtc/modules/video_coding/nack_module.h @@ -15,13 +15,13 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/include/module.h" +#include "webrtc/modules/video_coding/histogram.h" #include "webrtc/modules/video_coding/include/video_coding_defines.h" #include "webrtc/modules/video_coding/packet.h" -#include "webrtc/modules/video_coding/histogram.h" #include "webrtc/modules/video_coding/sequence_number_util.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/packet_buffer.cc b/webrtc/modules/video_coding/packet_buffer.cc index 1031042581..8b6de047ca 100644 --- a/webrtc/modules/video_coding/packet_buffer.cc +++ b/webrtc/modules/video_coding/packet_buffer.cc @@ -14,11 +14,11 @@ #include #include -#include "webrtc/base/atomicops.h" -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/common_video/h264/h264_common.h" #include "webrtc/modules/video_coding/frame_object.h" +#include "webrtc/rtc_base/atomicops.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/packet_buffer.h b/webrtc/modules/video_coding/packet_buffer.h index d5011b67c3..e0f058a56c 100644 --- a/webrtc/modules/video_coding/packet_buffer.h +++ b/webrtc/modules/video_coding/packet_buffer.h @@ -15,13 +15,13 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/scoped_ref_ptr.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/video_coding/packet.h" #include "webrtc/modules/video_coding/rtp_frame_reference_finder.h" #include "webrtc/modules/video_coding/sequence_number_util.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/scoped_ref_ptr.h" +#include "webrtc/rtc_base/thread_annotations.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/protection_bitrate_calculator.h b/webrtc/modules/video_coding/protection_bitrate_calculator.h index a12dcfc66a..d2c1499231 100644 --- a/webrtc/modules/video_coding/protection_bitrate_calculator.h +++ b/webrtc/modules/video_coding/protection_bitrate_calculator.h @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/criticalsection.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/video_coding/include/video_coding.h" #include "webrtc/modules/video_coding/media_opt_util.h" +#include "webrtc/rtc_base/criticalsection.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/receiver.cc b/webrtc/modules/video_coding/receiver.cc index af9ddb8f26..0c559e0751 100644 --- a/webrtc/modules/video_coding/receiver.cc +++ b/webrtc/modules/video_coding/receiver.cc @@ -16,11 +16,11 @@ #include #include -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" #include "webrtc/modules/video_coding/encoded_frame.h" #include "webrtc/modules/video_coding/internal_defines.h" #include "webrtc/modules/video_coding/media_opt_util.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/receiver.h b/webrtc/modules/video_coding/receiver.h index 0664d6247f..4ef253fb44 100644 --- a/webrtc/modules/video_coding/receiver.h +++ b/webrtc/modules/video_coding/receiver.h @@ -14,12 +14,12 @@ #include #include -#include "webrtc/base/criticalsection.h" +#include "webrtc/modules/video_coding/include/video_coding.h" +#include "webrtc/modules/video_coding/include/video_coding_defines.h" #include "webrtc/modules/video_coding/jitter_buffer.h" #include "webrtc/modules/video_coding/packet.h" #include "webrtc/modules/video_coding/timing.h" -#include "webrtc/modules/video_coding/include/video_coding.h" -#include "webrtc/modules/video_coding/include/video_coding_defines.h" +#include "webrtc/rtc_base/criticalsection.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/receiver_unittest.cc b/webrtc/modules/video_coding/receiver_unittest.cc index ff5716a9a5..83fdff2896 100644 --- a/webrtc/modules/video_coding/receiver_unittest.cc +++ b/webrtc/modules/video_coding/receiver_unittest.cc @@ -14,13 +14,13 @@ #include #include -#include "webrtc/base/checks.h" #include "webrtc/modules/video_coding/encoded_frame.h" #include "webrtc/modules/video_coding/packet.h" #include "webrtc/modules/video_coding/receiver.h" #include "webrtc/modules/video_coding/test/stream_generator.h" #include "webrtc/modules/video_coding/test/test_util.h" #include "webrtc/modules/video_coding/timing.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/video_coding/rtp_frame_reference_finder.cc b/webrtc/modules/video_coding/rtp_frame_reference_finder.cc index 16f529feea..ebf2f45dd9 100644 --- a/webrtc/modules/video_coding/rtp_frame_reference_finder.cc +++ b/webrtc/modules/video_coding/rtp_frame_reference_finder.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/video_coding/frame_object.h" #include "webrtc/modules/video_coding/packet_buffer.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { namespace video_coding { diff --git a/webrtc/modules/video_coding/rtp_frame_reference_finder.h b/webrtc/modules/video_coding/rtp_frame_reference_finder.h index 06f449ac39..99688e6657 100644 --- a/webrtc/modules/video_coding/rtp_frame_reference_finder.h +++ b/webrtc/modules/video_coding/rtp_frame_reference_finder.h @@ -18,10 +18,10 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/include/module_common_types.h" #include "webrtc/modules/video_coding/sequence_number_util.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" namespace webrtc { namespace video_coding { diff --git a/webrtc/modules/video_coding/rtp_frame_reference_finder_unittest.cc b/webrtc/modules/video_coding/rtp_frame_reference_finder_unittest.cc index 6ea8e020e2..b4c30a96e3 100644 --- a/webrtc/modules/video_coding/rtp_frame_reference_finder_unittest.cc +++ b/webrtc/modules/video_coding/rtp_frame_reference_finder_unittest.cc @@ -14,10 +14,10 @@ #include #include -#include "webrtc/base/random.h" -#include "webrtc/base/refcount.h" #include "webrtc/modules/video_coding/frame_object.h" #include "webrtc/modules/video_coding/packet_buffer.h" +#include "webrtc/rtc_base/random.h" +#include "webrtc/rtc_base/refcount.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/video_coding/sequence_number_util.h b/webrtc/modules/video_coding/sequence_number_util.h index 828e68a768..8a139a34dc 100644 --- a/webrtc/modules/video_coding/sequence_number_util.h +++ b/webrtc/modules/video_coding/sequence_number_util.h @@ -14,7 +14,7 @@ #include #include -#include "webrtc/base/mod_ops.h" +#include "webrtc/rtc_base/mod_ops.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/session_info.cc b/webrtc/modules/video_coding/session_info.cc index bb2b983b20..08e0f7b599 100644 --- a/webrtc/modules/video_coding/session_info.cc +++ b/webrtc/modules/video_coding/session_info.cc @@ -10,8 +10,8 @@ #include "webrtc/modules/video_coding/session_info.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/video_coding/packet.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/test/stream_generator.h b/webrtc/modules/video_coding/test/stream_generator.h index 5a3813d490..eded9f49ff 100644 --- a/webrtc/modules/video_coding/test/stream_generator.h +++ b/webrtc/modules/video_coding/test/stream_generator.h @@ -12,8 +12,8 @@ #include -#include "webrtc/base/constructormagic.h" #include "webrtc/modules/video_coding/packet.h" +#include "webrtc/rtc_base/constructormagic.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/timing.h b/webrtc/modules/video_coding/timing.h index bfd6778c12..6d19b14c46 100644 --- a/webrtc/modules/video_coding/timing.h +++ b/webrtc/modules/video_coding/timing.h @@ -13,9 +13,9 @@ #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_annotations.h" #include "webrtc/modules/video_coding/codec_timer.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_annotations.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/utility/frame_dropper.cc b/webrtc/modules/video_coding/utility/frame_dropper.cc index 3ffb078922..73d641055f 100644 --- a/webrtc/modules/video_coding/utility/frame_dropper.cc +++ b/webrtc/modules/video_coding/utility/frame_dropper.cc @@ -12,7 +12,7 @@ #include -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/utility/frame_dropper.h b/webrtc/modules/video_coding/utility/frame_dropper.h index 71ff93dadb..bf31f39c56 100644 --- a/webrtc/modules/video_coding/utility/frame_dropper.h +++ b/webrtc/modules/video_coding/utility/frame_dropper.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/numerics/exp_filter.h" +#include "webrtc/rtc_base/numerics/exp_filter.h" #include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/utility/frame_dropper_unittest.cc b/webrtc/modules/video_coding/utility/frame_dropper_unittest.cc index eec3d6065a..c33ed8504a 100644 --- a/webrtc/modules/video_coding/utility/frame_dropper_unittest.cc +++ b/webrtc/modules/video_coding/utility/frame_dropper_unittest.cc @@ -10,7 +10,7 @@ #include "webrtc/modules/video_coding/utility/frame_dropper.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/test/gtest.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/utility/ivf_file_writer.cc b/webrtc/modules/video_coding/utility/ivf_file_writer.cc index d01d0231e8..ce3919d7ef 100644 --- a/webrtc/modules/video_coding/utility/ivf_file_writer.cc +++ b/webrtc/modules/video_coding/utility/ivf_file_writer.cc @@ -13,9 +13,9 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" // TODO(palmkvist): make logging more informative in the absence of a file name // (or get one) diff --git a/webrtc/modules/video_coding/utility/ivf_file_writer.h b/webrtc/modules/video_coding/utility/ivf_file_writer.h index 374b80700a..07a8581467 100644 --- a/webrtc/modules/video_coding/utility/ivf_file_writer.h +++ b/webrtc/modules/video_coding/utility/ivf_file_writer.h @@ -14,11 +14,11 @@ #include #include -#include "webrtc/base/constructormagic.h" -#include "webrtc/base/file.h" -#include "webrtc/base/timeutils.h" #include "webrtc/common_video/include/video_frame.h" #include "webrtc/modules/include/module_common_types.h" +#include "webrtc/rtc_base/constructormagic.h" +#include "webrtc/rtc_base/file.h" +#include "webrtc/rtc_base/timeutils.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/utility/ivf_file_writer_unittest.cc b/webrtc/modules/video_coding/utility/ivf_file_writer_unittest.cc index cb5c97b870..b7a9b413b4 100644 --- a/webrtc/modules/video_coding/utility/ivf_file_writer_unittest.cc +++ b/webrtc/modules/video_coding/utility/ivf_file_writer_unittest.cc @@ -12,11 +12,11 @@ #include -#include "webrtc/base/helpers.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/thread.h" -#include "webrtc/base/timeutils.h" #include "webrtc/modules/rtp_rtcp/source/byte_io.h" +#include "webrtc/rtc_base/helpers.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/thread.h" +#include "webrtc/rtc_base/timeutils.h" #include "webrtc/test/gtest.h" #include "webrtc/test/testsupport/fileutils.h" diff --git a/webrtc/modules/video_coding/utility/moving_average.h b/webrtc/modules/video_coding/utility/moving_average.h index dd42385038..bc31cd5213 100644 --- a/webrtc/modules/video_coding/utility/moving_average.h +++ b/webrtc/modules/video_coding/utility/moving_average.h @@ -13,7 +13,7 @@ #include -#include "webrtc/base/optional.h" +#include "webrtc/rtc_base/optional.h" namespace webrtc { class MovingAverage { diff --git a/webrtc/modules/video_coding/utility/quality_scaler.cc b/webrtc/modules/video_coding/utility/quality_scaler.cc index 8be4a65bc2..760ebd7b51 100644 --- a/webrtc/modules/video_coding/utility/quality_scaler.cc +++ b/webrtc/modules/video_coding/utility/quality_scaler.cc @@ -15,9 +15,9 @@ #include #include -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/task_queue.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/task_queue.h" // TODO(kthelgason): Some versions of Android have issues with log2. // See https://code.google.com/p/android/issues/detail?id=212634 for details diff --git a/webrtc/modules/video_coding/utility/quality_scaler.h b/webrtc/modules/video_coding/utility/quality_scaler.h index a07b1eabf2..690d1bc059 100644 --- a/webrtc/modules/video_coding/utility/quality_scaler.h +++ b/webrtc/modules/video_coding/utility/quality_scaler.h @@ -13,11 +13,11 @@ #include -#include "webrtc/common_types.h" #include "webrtc/api/video_codecs/video_encoder.h" -#include "webrtc/base/optional.h" -#include "webrtc/base/sequenced_task_checker.h" +#include "webrtc/common_types.h" #include "webrtc/modules/video_coding/utility/moving_average.h" +#include "webrtc/rtc_base/optional.h" +#include "webrtc/rtc_base/sequenced_task_checker.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/utility/quality_scaler_unittest.cc b/webrtc/modules/video_coding/utility/quality_scaler_unittest.cc index 93b5fcd431..37a986c694 100644 --- a/webrtc/modules/video_coding/utility/quality_scaler_unittest.cc +++ b/webrtc/modules/video_coding/utility/quality_scaler_unittest.cc @@ -12,8 +12,8 @@ #include -#include "webrtc/base/event.h" -#include "webrtc/base/task_queue.h" +#include "webrtc/rtc_base/event.h" +#include "webrtc/rtc_base/task_queue.h" #include "webrtc/test/gmock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/video_coding/utility/vp8_header_parser.cc b/webrtc/modules/video_coding/utility/vp8_header_parser.cc index d88fb6cc21..78ae69c022 100644 --- a/webrtc/modules/video_coding/utility/vp8_header_parser.cc +++ b/webrtc/modules/video_coding/utility/vp8_header_parser.cc @@ -9,7 +9,7 @@ */ #include "webrtc/modules/video_coding/utility/vp8_header_parser.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/utility/vp9_uncompressed_header_parser.cc b/webrtc/modules/video_coding/utility/vp9_uncompressed_header_parser.cc index 40256d5847..301ed34d55 100644 --- a/webrtc/modules/video_coding/utility/vp9_uncompressed_header_parser.cc +++ b/webrtc/modules/video_coding/utility/vp9_uncompressed_header_parser.cc @@ -9,8 +9,8 @@ */ #include "webrtc/modules/video_coding/utility/vp9_uncompressed_header_parser.h" -#include "webrtc/base/bitbuffer.h" -#include "webrtc/base/logging.h" +#include "webrtc/rtc_base/bitbuffer.h" +#include "webrtc/rtc_base/logging.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/video_codec_initializer.cc b/webrtc/modules/video_coding/video_codec_initializer.cc index 7218cd57ca..c759e84a36 100644 --- a/webrtc/modules/video_coding/video_codec_initializer.cc +++ b/webrtc/modules/video_coding/video_codec_initializer.cc @@ -10,8 +10,6 @@ #include "webrtc/modules/video_coding/include/video_codec_initializer.h" -#include "webrtc/base/basictypes.h" -#include "webrtc/base/logging.h" #include "webrtc/common_types.h" #include "webrtc/common_video/include/video_bitrate_allocator.h" #include "webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h" @@ -19,6 +17,8 @@ #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" #include "webrtc/modules/video_coding/include/video_coding_defines.h" #include "webrtc/modules/video_coding/utility/default_video_bitrate_allocator.h" +#include "webrtc/rtc_base/basictypes.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/video_coding_impl.cc b/webrtc/modules/video_coding/video_coding_impl.cc index 8ff5482af4..7240006e71 100644 --- a/webrtc/modules/video_coding/video_coding_impl.cc +++ b/webrtc/modules/video_coding/video_coding_impl.cc @@ -13,8 +13,6 @@ #include #include -#include "webrtc/base/criticalsection.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/common_types.h" #include "webrtc/common_video/include/video_bitrate_allocator.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" @@ -25,6 +23,8 @@ #include "webrtc/modules/video_coding/jitter_buffer.h" #include "webrtc/modules/video_coding/packet.h" #include "webrtc/modules/video_coding/timing.h" +#include "webrtc/rtc_base/criticalsection.h" +#include "webrtc/rtc_base/thread_checker.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/video_coding_impl.h b/webrtc/modules/video_coding/video_coding_impl.h index 5e547df07a..37d2b2d299 100644 --- a/webrtc/modules/video_coding/video_coding_impl.h +++ b/webrtc/modules/video_coding/video_coding_impl.h @@ -17,10 +17,6 @@ #include #include -#include "webrtc/base/onetimeevent.h" -#include "webrtc/base/sequenced_task_checker.h" -#include "webrtc/base/thread_annotations.h" -#include "webrtc/base/thread_checker.h" #include "webrtc/common_video/include/frame_callback.h" #include "webrtc/modules/video_coding/codec_database.h" #include "webrtc/modules/video_coding/frame_buffer.h" @@ -31,6 +27,10 @@ #include "webrtc/modules/video_coding/qp_parser.h" #include "webrtc/modules/video_coding/receiver.h" #include "webrtc/modules/video_coding/timing.h" +#include "webrtc/rtc_base/onetimeevent.h" +#include "webrtc/rtc_base/sequenced_task_checker.h" +#include "webrtc/rtc_base/thread_annotations.h" +#include "webrtc/rtc_base/thread_checker.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/video_packet_buffer_unittest.cc b/webrtc/modules/video_coding/video_packet_buffer_unittest.cc index 300a2a6f1c..e2537b8dc2 100644 --- a/webrtc/modules/video_coding/video_packet_buffer_unittest.cc +++ b/webrtc/modules/video_coding/video_packet_buffer_unittest.cc @@ -13,10 +13,10 @@ #include #include -#include "webrtc/base/random.h" #include "webrtc/common_video/h264/h264_common.h" #include "webrtc/modules/video_coding/frame_object.h" #include "webrtc/modules/video_coding/packet_buffer.h" +#include "webrtc/rtc_base/random.h" #include "webrtc/system_wrappers/include/clock.h" #include "webrtc/test/gtest.h" diff --git a/webrtc/modules/video_coding/video_receiver.cc b/webrtc/modules/video_coding/video_receiver.cc index 84f5af521f..3d3e155dc3 100644 --- a/webrtc/modules/video_coding/video_receiver.cc +++ b/webrtc/modules/video_coding/video_receiver.cc @@ -8,16 +8,16 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" -#include "webrtc/base/trace_event.h" #include "webrtc/common_types.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" -#include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/encoded_frame.h" +#include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/jitter_buffer.h" #include "webrtc/modules/video_coding/packet.h" #include "webrtc/modules/video_coding/video_coding_impl.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" +#include "webrtc/rtc_base/trace_event.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_coding/video_sender.cc b/webrtc/modules/video_coding/video_sender.cc index 3dabbfca09..5ab607c51c 100644 --- a/webrtc/modules/video_coding/video_sender.cc +++ b/webrtc/modules/video_coding/video_sender.cc @@ -11,17 +11,17 @@ #include // std::max -#include "webrtc/base/checks.h" -#include "webrtc/base/logging.h" #include "webrtc/common_types.h" #include "webrtc/common_video/include/video_bitrate_allocator.h" #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" #include "webrtc/modules/video_coding/codecs/vp8/temporal_layers.h" -#include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/encoded_frame.h" +#include "webrtc/modules/video_coding/include/video_codec_interface.h" #include "webrtc/modules/video_coding/utility/default_video_bitrate_allocator.h" #include "webrtc/modules/video_coding/utility/quality_scaler.h" #include "webrtc/modules/video_coding/video_coding_impl.h" +#include "webrtc/rtc_base/checks.h" +#include "webrtc/rtc_base/logging.h" #include "webrtc/system_wrappers/include/clock.h" namespace webrtc { diff --git a/webrtc/modules/video_processing/util/denoiser_filter.cc b/webrtc/modules/video_processing/util/denoiser_filter.cc index 376dec74a3..d088ddab1c 100644 --- a/webrtc/modules/video_processing/util/denoiser_filter.cc +++ b/webrtc/modules/video_processing/util/denoiser_filter.cc @@ -8,11 +8,11 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "webrtc/base/checks.h" #include "webrtc/modules/video_processing/util/denoiser_filter.h" #include "webrtc/modules/video_processing/util/denoiser_filter_c.h" #include "webrtc/modules/video_processing/util/denoiser_filter_neon.h" #include "webrtc/modules/video_processing/util/denoiser_filter_sse2.h" +#include "webrtc/rtc_base/checks.h" #include "webrtc/system_wrappers/include/cpu_features_wrapper.h" namespace webrtc {