diff --git a/webrtc/modules/remote_bitrate_estimator/bitrate_estimator.h b/webrtc/modules/remote_bitrate_estimator/bitrate_estimator.h index 6e58a7942b..3d5d51b0e9 100644 --- a/webrtc/modules/remote_bitrate_estimator/bitrate_estimator.h +++ b/webrtc/modules/remote_bitrate_estimator/bitrate_estimator.h @@ -13,7 +13,7 @@ #include -#include "typedefs.h" +#include "webrtc/typedefs.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/bitrate_estimator_unittest.cc b/webrtc/modules/remote_bitrate_estimator/bitrate_estimator_unittest.cc index 2dcc603fd5..ca9da99c01 100644 --- a/webrtc/modules/remote_bitrate_estimator/bitrate_estimator_unittest.cc +++ b/webrtc/modules/remote_bitrate_estimator/bitrate_estimator_unittest.cc @@ -8,8 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include - +#include "testing/gtest/include/gtest/gtest.h" #include "webrtc/modules/remote_bitrate_estimator/bitrate_estimator.h" namespace { diff --git a/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h b/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h index 6c3dc40042..4fe5d9164b 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_RTP_RTCP_SOURCE_BWE_DEFINES_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_BWE_DEFINES_H_ -#include "typedefs.h" +#include "webrtc/typedefs.h" #define BWE_MAX(a,b) ((a)>(b)?(a):(b)) #define BWE_MIN(a,b) ((a)<(b)?(a):(b)) diff --git a/webrtc/modules/remote_bitrate_estimator/include/mock/mock_remote_bitrate_observer.h b/webrtc/modules/remote_bitrate_estimator/include/mock/mock_remote_bitrate_observer.h index 2bb8d09a91..edfac977a2 100644 --- a/webrtc/modules/remote_bitrate_estimator/include/mock/mock_remote_bitrate_observer.h +++ b/webrtc/modules/remote_bitrate_estimator/include/mock/mock_remote_bitrate_observer.h @@ -11,11 +11,10 @@ #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_MOCK_MOCK_REMOTE_BITRATE_ESTIMATOR_H_ #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_MOCK_MOCK_REMOTE_BITRATE_ESTIMATOR_H_ -#include - #include -#include "modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" +#include "testing/gmock/include/gmock/gmock.h" +#include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/include/rtp_to_ntp.h b/webrtc/modules/remote_bitrate_estimator/include/rtp_to_ntp.h index b46534fcb7..7928abfacb 100644 --- a/webrtc/modules/remote_bitrate_estimator/include/rtp_to_ntp.h +++ b/webrtc/modules/remote_bitrate_estimator/include/rtp_to_ntp.h @@ -13,7 +13,7 @@ #include -#include "typedefs.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 0fbf6f15fa..86f6cb8ee3 100644 --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector.cc @@ -14,10 +14,10 @@ #include #endif -#include "modules/remote_bitrate_estimator/overuse_detector.h" -#include "modules/remote_bitrate_estimator/remote_rate_control.h" -#include "modules/rtp_rtcp/source/rtp_utility.h" -#include "system_wrappers/interface/trace.h" +#include "webrtc/modules/remote_bitrate_estimator/overuse_detector.h" +#include "webrtc/modules/remote_bitrate_estimator/remote_rate_control.h" +#include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" +#include "webrtc/system_wrappers/interface/trace.h" #ifdef WEBRTC_BWE_MATLAB extern MatlabEngine eng; // global variable defined elsewhere diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector.h b/webrtc/modules/remote_bitrate_estimator/overuse_detector.h index a8a038cc8b..57f4ddf04f 100644 --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector.h +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector.h @@ -12,12 +12,12 @@ #include -#include "modules/interface/module_common_types.h" -#include "modules/remote_bitrate_estimator/include/bwe_defines.h" -#include "typedefs.h" // NOLINT(build/include) +#include "webrtc/modules/interface/module_common_types.h" +#include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" +#include "webrtc/typedefs.h" #ifdef WEBRTC_BWE_MATLAB -#include "../test/BWEStandAlone/MatlabPlot.h" +#include "webrtc/modules/rtp_rtcp/test/BWEStandAlone/MatlabPlot.h" #endif namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_multi_stream_unittest.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_multi_stream_unittest.cc index 72c1d2db4d..a4e12aa366 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_multi_stream_unittest.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_multi_stream_unittest.cc @@ -8,9 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include +#include "testing/gtest/include/gtest/gtest.h" -#include "modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h" +#include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h" #include "webrtc/system_wrappers/interface/constructor_magic.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 f0780c9a55..c149933b9d 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 +#include "testing/gtest/include/gtest/gtest.h" -#include "modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h" +#include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.h" #include "webrtc/system_wrappers/interface/constructor_magic.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 0dc0ce8e6b..c4eb0e267b 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 @@ -11,12 +11,11 @@ #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_REMOTE_BITRATE_ESTIMATOR_UNITTEST_HELPER_H_ #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_REMOTE_BITRATE_ESTIMATOR_UNITTEST_HELPER_H_ -#include - #include #include #include +#include "testing/gtest/include/gtest/gtest.h" #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h" #include "webrtc/system_wrappers/interface/clock.h" #include "webrtc/system_wrappers/interface/constructor_magic.h" diff --git a/webrtc/modules/remote_bitrate_estimator/remote_rate_control.cc b/webrtc/modules/remote_bitrate_estimator/remote_rate_control.cc index 6e6a1b3928..36ecdb29ee 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_rate_control.cc +++ b/webrtc/modules/remote_bitrate_estimator/remote_rate_control.cc @@ -8,14 +8,14 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "modules/remote_bitrate_estimator/remote_rate_control.h" +#include "webrtc/modules/remote_bitrate_estimator/remote_rate_control.h" #include #include #include #include -#include "system_wrappers/interface/trace.h" +#include "webrtc/system_wrappers/interface/trace.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/remote_rate_control.h b/webrtc/modules/remote_bitrate_estimator/remote_rate_control.h index efbebfb317..4d16c72075 100644 --- a/webrtc/modules/remote_bitrate_estimator/remote_rate_control.h +++ b/webrtc/modules/remote_bitrate_estimator/remote_rate_control.h @@ -11,7 +11,7 @@ #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_REMOTE_RATE_CONTROL_H_ #define WEBRTC_MODULES_RTP_RTCP_SOURCE_REMOTE_RATE_CONTROL_H_ -#include "modules/remote_bitrate_estimator/include/bwe_defines.h" +#include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h" namespace webrtc { diff --git a/webrtc/modules/remote_bitrate_estimator/rtp_to_ntp_unittest.cc b/webrtc/modules/remote_bitrate_estimator/rtp_to_ntp_unittest.cc index 5f2142a239..aff314aaa5 100644 --- a/webrtc/modules/remote_bitrate_estimator/rtp_to_ntp_unittest.cc +++ b/webrtc/modules/remote_bitrate_estimator/rtp_to_ntp_unittest.cc @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#include "gtest/gtest.h" -#include "modules/remote_bitrate_estimator/include/rtp_to_ntp.h" +#include "testing/gtest/include/gtest/gtest.h" +#include "webrtc/modules/remote_bitrate_estimator/include/rtp_to_ntp.h" namespace webrtc {