Fixing WebRTC after moving from src/webrtc to src/
In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
This commit is contained in:

committed by
Commit Bot

parent
bb547203bf
commit
92ea95e34a
@ -1,4 +1,4 @@
|
||||
include_rules = [
|
||||
"+webrtc/api",
|
||||
"+webrtc/media",
|
||||
"+api",
|
||||
"+media",
|
||||
]
|
||||
|
@ -8,12 +8,12 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "webrtc/api/stats/rtcstats.h"
|
||||
#include "api/stats/rtcstats.h"
|
||||
|
||||
#include <iomanip>
|
||||
#include <sstream>
|
||||
|
||||
#include "webrtc/rtc_base/stringencode.h"
|
||||
#include "rtc_base/stringencode.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "webrtc/api/stats/rtcstats_objects.h"
|
||||
#include "api/stats/rtcstats_objects.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -8,15 +8,15 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "webrtc/api/stats/rtcstats.h"
|
||||
#include "api/stats/rtcstats.h"
|
||||
|
||||
#include <cmath>
|
||||
#include <cstring>
|
||||
|
||||
#include "webrtc/rtc_base/checks.h"
|
||||
#include "webrtc/rtc_base/gunit.h"
|
||||
#include "webrtc/rtc_base/json.h"
|
||||
#include "webrtc/stats/test/rtcteststats.h"
|
||||
#include "rtc_base/checks.h"
|
||||
#include "rtc_base/gunit.h"
|
||||
#include "rtc_base/json.h"
|
||||
#include "stats/test/rtcteststats.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "webrtc/api/stats/rtcstatsreport.h"
|
||||
#include "api/stats/rtcstatsreport.h"
|
||||
|
||||
#include <sstream>
|
||||
|
||||
|
@ -8,11 +8,11 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "webrtc/api/stats/rtcstatsreport.h"
|
||||
#include "api/stats/rtcstatsreport.h"
|
||||
|
||||
#include "webrtc/api/stats/rtcstats.h"
|
||||
#include "webrtc/rtc_base/checks.h"
|
||||
#include "webrtc/rtc_base/gunit.h"
|
||||
#include "api/stats/rtcstats.h"
|
||||
#include "rtc_base/checks.h"
|
||||
#include "rtc_base/gunit.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#include "webrtc/stats/test/rtcteststats.h"
|
||||
#include "stats/test/rtcteststats.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
|
@ -8,13 +8,13 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef WEBRTC_STATS_TEST_RTCTESTSTATS_H_
|
||||
#define WEBRTC_STATS_TEST_RTCTESTSTATS_H_
|
||||
#ifndef STATS_TEST_RTCTESTSTATS_H_
|
||||
#define STATS_TEST_RTCTESTSTATS_H_
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "webrtc/api/stats/rtcstats.h"
|
||||
#include "api/stats/rtcstats.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
@ -44,4 +44,4 @@ class RTCTestStats : public RTCStats {
|
||||
|
||||
} // namespace webrtc
|
||||
|
||||
#endif // WEBRTC_STATS_TEST_RTCTESTSTATS_H_
|
||||
#endif // STATS_TEST_RTCTESTSTATS_H_
|
||||
|
Reference in New Issue
Block a user