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

Unified Diff: net/base/net_log_logger_unittest.cc

Issue 642403002: git cl format the first third of the net/base directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit Created 6 years, 1 month 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/base/net_log_logger_unittest.cc
diff --git a/net/base/net_log_logger_unittest.cc b/net/base/net_log_logger_unittest.cc
index 256ae5917402fff84079ecf68081014f8b1d71ba..30b41b3bdb3b3988e1712c1d0f24feb97d6d6ace 100644
--- a/net/base/net_log_logger_unittest.cc
+++ b/net/base/net_log_logger_unittest.cc
@@ -79,10 +79,8 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONWithOneEvent) {
const int kDummyId = 1;
NetLog::Source source(NetLog::SOURCE_SPDY_SESSION, kDummyId);
- NetLog::EntryData entry_data(NetLog::TYPE_PROXY_SERVICE,
- source,
- NetLog::PHASE_BEGIN,
- base::TimeTicks::Now(),
+ NetLog::EntryData entry_data(NetLog::TYPE_PROXY_SERVICE, source,
+ NetLog::PHASE_BEGIN, base::TimeTicks::Now(),
NULL);
NetLog::Entry entry(&entry_data, NetLog::LOG_ALL);
logger->OnAddEntry(entry);
@@ -110,10 +108,8 @@ TEST_F(NetLogLoggerTest, GeneratesValidJSONWithMultipleEvents) {
const int kDummyId = 1;
NetLog::Source source(NetLog::SOURCE_SPDY_SESSION, kDummyId);
- NetLog::EntryData entry_data(NetLog::TYPE_PROXY_SERVICE,
- source,
- NetLog::PHASE_BEGIN,
- base::TimeTicks::Now(),
+ NetLog::EntryData entry_data(NetLog::TYPE_PROXY_SERVICE, source,
+ NetLog::PHASE_BEGIN, base::TimeTicks::Now(),
NULL);
NetLog::Entry entry(&entry_data, NetLog::LOG_ALL);

Powered by Google App Engine
This is Rietveld 408576698