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

Unified Diff: net/tools/gdig/file_net_log.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/tools/gdig/file_net_log.cc
diff --git a/net/tools/gdig/file_net_log.cc b/net/tools/gdig/file_net_log.cc
index 5020f6de647026312322e420ea096095bb6c1c2b..c0f3be55b2c25a85fb46aa537729e5945f12a3bc 100644
--- a/net/tools/gdig/file_net_log.cc
+++ b/net/tools/gdig/file_net_log.cc
@@ -40,9 +40,13 @@ void FileNetLogObserver::OnAddEntry(const net::NetLog::Entry& entry) {
first_event_time_ = now;
}
base::TimeDelta elapsed_time = now - first_event_time_;
- fprintf(destination_ , "%u\t%u\t%s\t%s\t%s\n",
+ fprintf(destination_,
+ "%u\t%u\t%s\t%s\t%s\n",
static_cast<unsigned>(elapsed_time.InMilliseconds()),
- entry.source().id, source, type, params.c_str());
+ entry.source().id,
+ source,
+ type,
+ params.c_str());
}
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698