aboutsummaryrefslogtreecommitdiff
path: root/system_wrappers
diff options
context:
space:
mode:
authorJonas Olsson <jonasolsson@webrtc.org>2019-07-05 19:08:33 +0200
committerCommit Bot <commit-bot@chromium.org>2019-07-08 13:45:15 +0000
commita4d873786f10eedd72de25ad0d94ad7c53c1f68a (patch)
tree962ed681b560cc929c3521fc50fdded8fd88860d /system_wrappers
parentc93bfcfd2f7613a1f8fa26b567de327db3548c7f (diff)
downloadwebrtc-a4d873786f10eedd72de25ad0d94ad7c53c1f68a.tar.gz
Format almost everything.
This CL was generated by running git ls-files | grep -P "(\.h|\.cc)$" | grep -v 'sdk/' | grep -v 'rtc_base/ssl_' | \ grep -v 'fake_rtc_certificate_generator.h' | grep -v 'modules/audio_device/win/' | \ grep -v 'system_wrappers/source/clock.cc' | grep -v 'rtc_base/trace_event.h' | \ grep -v 'modules/audio_coding/codecs/ilbc/' | grep -v 'screen_capturer_mac.h' | \ grep -v 'spl_inl_mips.h' | grep -v 'data_size_unittest.cc' | grep -v 'timestamp_unittest.cc' \ | xargs clang-format -i ; git cl format Most of these changes are clang-format grouping and reordering includes differently. Bug: webrtc:9340 Change-Id: Ic83ddbc169bfacd21883e381b5181c3dd4fe8a63 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/144051 Commit-Queue: Jonas Olsson <jonasolsson@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28505}
Diffstat (limited to 'system_wrappers')
-rw-r--r--system_wrappers/include/clock.h1
-rw-r--r--system_wrappers/include/metrics.h1
-rw-r--r--system_wrappers/include/rtp_to_ntp_estimator.h1
-rw-r--r--system_wrappers/source/cpu_features.cc1
-rw-r--r--system_wrappers/source/metrics_unittest.cc1
-rw-r--r--system_wrappers/source/ntp_time_unittest.cc1
-rw-r--r--system_wrappers/source/rtp_to_ntp_estimator.cc1
7 files changed, 6 insertions, 1 deletions
diff --git a/system_wrappers/include/clock.h b/system_wrappers/include/clock.h
index 09d2785179..c026a4e7d9 100644
--- a/system_wrappers/include/clock.h
+++ b/system_wrappers/include/clock.h
@@ -12,6 +12,7 @@
#define SYSTEM_WRAPPERS_INCLUDE_CLOCK_H_
#include <stdint.h>
+
#include <memory>
#include "api/units/timestamp.h"
diff --git a/system_wrappers/include/metrics.h b/system_wrappers/include/metrics.h
index 62dc6c64b1..18c97574b1 100644
--- a/system_wrappers/include/metrics.h
+++ b/system_wrappers/include/metrics.h
@@ -12,6 +12,7 @@
#define SYSTEM_WRAPPERS_INCLUDE_METRICS_H_
#include <stddef.h>
+
#include <map>
#include <memory>
#include <string>
diff --git a/system_wrappers/include/rtp_to_ntp_estimator.h b/system_wrappers/include/rtp_to_ntp_estimator.h
index c244c4ff27..d5c50a3f32 100644
--- a/system_wrappers/include/rtp_to_ntp_estimator.h
+++ b/system_wrappers/include/rtp_to_ntp_estimator.h
@@ -12,6 +12,7 @@
#define SYSTEM_WRAPPERS_INCLUDE_RTP_TO_NTP_ESTIMATOR_H_
#include <stdint.h>
+
#include <list>
#include "absl/types/optional.h"
diff --git a/system_wrappers/source/cpu_features.cc b/system_wrappers/source/cpu_features.cc
index d433a77f70..ebcb48c15f 100644
--- a/system_wrappers/source/cpu_features.cc
+++ b/system_wrappers/source/cpu_features.cc
@@ -17,7 +17,6 @@
#include <intrin.h>
#endif
-
// No CPU feature is available => straight C path.
int GetCPUInfoNoASM(CPUFeature feature) {
(void)feature;
diff --git a/system_wrappers/source/metrics_unittest.cc b/system_wrappers/source/metrics_unittest.cc
index 9c96ba0bb0..fa8bb2da1c 100644
--- a/system_wrappers/source/metrics_unittest.cc
+++ b/system_wrappers/source/metrics_unittest.cc
@@ -9,6 +9,7 @@
*/
#include "system_wrappers/include/metrics.h"
+
#include "test/gmock.h"
#include "test/gtest.h"
diff --git a/system_wrappers/source/ntp_time_unittest.cc b/system_wrappers/source/ntp_time_unittest.cc
index 7be464d02d..f45273fb94 100644
--- a/system_wrappers/source/ntp_time_unittest.cc
+++ b/system_wrappers/source/ntp_time_unittest.cc
@@ -9,6 +9,7 @@
*/
#include "system_wrappers/include/ntp_time.h"
+
#include "system_wrappers/include/clock.h"
#include "test/gtest.h"
diff --git a/system_wrappers/source/rtp_to_ntp_estimator.cc b/system_wrappers/source/rtp_to_ntp_estimator.cc
index 4bbf6096d9..b26115f703 100644
--- a/system_wrappers/source/rtp_to_ntp_estimator.cc
+++ b/system_wrappers/source/rtp_to_ntp_estimator.cc
@@ -11,6 +11,7 @@
#include "system_wrappers/include/rtp_to_ntp_estimator.h"
#include <stddef.h>
+
#include <cmath>
#include <vector>