Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1181)

Unified Diff: net/quic/quic_time.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/quic/quic_time.cc
diff --git a/net/quic/quic_time.cc b/net/quic/quic_time.cc
index d467980c43de73a12ce58cec1f474598c19e229d..a8507339c1ffe67d8cad8df72f38d549d322cf17 100644
--- a/net/quic/quic_time.cc
+++ b/net/quic/quic_time.cc
@@ -11,8 +11,7 @@ namespace net {
// Highest number of microseconds that DateTimeOffset can hold.
const int64 kQuicInfiniteTimeUs = GG_INT64_C(0x7fffffffffffffff) / 10;
-QuicTime::Delta::Delta(base::TimeDelta delta)
- : delta_(delta) {
+QuicTime::Delta::Delta(base::TimeDelta delta) : delta_(delta) {
}
// static
@@ -94,8 +93,7 @@ QuicTime QuicTime::Max(QuicTime time1, QuicTime time2) {
return time1 > time2 ? time1 : time2;
}
-QuicTime::QuicTime(base::TimeTicks ticks)
- : ticks_(ticks) {
+QuicTime::QuicTime(base::TimeTicks ticks) : ticks_(ticks) {
}
int64 QuicTime::ToDebuggingValue() const {
@@ -175,8 +173,7 @@ QuicWallTime QuicWallTime::Subtract(QuicTime::Delta delta) const {
return QuicWallTime(seconds);
}
-QuicWallTime::QuicWallTime(uint64 seconds)
- : seconds_(seconds) {
+QuicWallTime::QuicWallTime(uint64 seconds) : seconds_(seconds) {
}
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698