aboutsummaryrefslogtreecommitdiff
path: root/stats
diff options
context:
space:
mode:
authorMirko Bonadei <mbonadei@webrtc.org>2017-09-15 06:47:31 +0200
committerCommit Bot <commit-bot@chromium.org>2017-09-15 05:02:56 +0000
commit92ea95e34af5966555903026f45164afbd7e2088 (patch)
tree3befb3fcfefff3b35da8a834052543338e15bcc0 /stats
parentbb547203bfebcc478b263c4e9ca173c6fd5a0c5d (diff)
downloadwebrtc-92ea95e34af5966555903026f45164afbd7e2088.tar.gz
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}
Diffstat (limited to 'stats')
-rw-r--r--stats/DEPS4
-rw-r--r--stats/rtcstats.cc4
-rw-r--r--stats/rtcstats_objects.cc2
-rw-r--r--stats/rtcstats_unittest.cc10
-rw-r--r--stats/rtcstatsreport.cc2
-rw-r--r--stats/rtcstatsreport_unittest.cc8
-rw-r--r--stats/test/rtcteststats.cc2
-rw-r--r--stats/test/rtcteststats.h8
8 files changed, 20 insertions, 20 deletions
diff --git a/stats/DEPS b/stats/DEPS
index 276073f77f..1475196e73 100644
--- a/stats/DEPS
+++ b/stats/DEPS
@@ -1,4 +1,4 @@
include_rules = [
- "+webrtc/api",
- "+webrtc/media",
+ "+api",
+ "+media",
]
diff --git a/stats/rtcstats.cc b/stats/rtcstats.cc
index 0ef49c1a5e..e4460bd90c 100644
--- a/stats/rtcstats.cc
+++ b/stats/rtcstats.cc
@@ -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 {
diff --git a/stats/rtcstats_objects.cc b/stats/rtcstats_objects.cc
index 284dfe0b76..f407c0600b 100644
--- a/stats/rtcstats_objects.cc
+++ b/stats/rtcstats_objects.cc
@@ -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 {
diff --git a/stats/rtcstats_unittest.cc b/stats/rtcstats_unittest.cc
index b4f82a7095..7148c9fc2f 100644
--- a/stats/rtcstats_unittest.cc
+++ b/stats/rtcstats_unittest.cc
@@ -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 {
diff --git a/stats/rtcstatsreport.cc b/stats/rtcstatsreport.cc
index 322d5369a7..90025f7120 100644
--- a/stats/rtcstatsreport.cc
+++ b/stats/rtcstatsreport.cc
@@ -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>
diff --git a/stats/rtcstatsreport_unittest.cc b/stats/rtcstatsreport_unittest.cc
index 25ac3a2d17..5483ee3083 100644
--- a/stats/rtcstatsreport_unittest.cc
+++ b/stats/rtcstatsreport_unittest.cc
@@ -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 {
diff --git a/stats/test/rtcteststats.cc b/stats/test/rtcteststats.cc
index f60bd0f8f0..5b6dffa5b8 100644
--- a/stats/test/rtcteststats.cc
+++ b/stats/test/rtcteststats.cc
@@ -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 {
diff --git a/stats/test/rtcteststats.h b/stats/test/rtcteststats.h
index a0ac8a1726..7c8e1051ff 100644
--- a/stats/test/rtcteststats.h
+++ b/stats/test/rtcteststats.h
@@ -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_