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

Unified Diff: net/tools/gdig/gdig.cc

Issue 2315613002: Extracted NetLog class's inner enum types into their own enum classes and (Closed)
Patch Set: Ran "git cl format" on code. Much formatting ensued. Created 4 years, 3 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
« no previous file with comments | « net/spdy/spdy_stream_unittest.cc ('k') | net/udp/udp_socket_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/gdig/gdig.cc
diff --git a/net/tools/gdig/gdig.cc b/net/tools/gdig/gdig.cc
index 17832fe67f0f17357db53d62a238e77f73d308e3..5af22a7386e6ea793297f142efebf004490f93b7 100644
--- a/net/tools/gdig/gdig.cc
+++ b/net/tools/gdig/gdig.cc
@@ -35,6 +35,7 @@
#include "net/dns/host_cache.h"
#include "net/dns/host_resolver_impl.h"
#include "net/log/net_log.h"
+#include "net/log/net_log_source_type.h"
#include "net/tools/gdig/file_net_log.h"
#if defined(OS_MACOSX)
@@ -470,7 +471,7 @@ void GDig::ReplayNextEntry() {
++replay_log_index_;
int ret = resolver_->Resolve(
info, DEFAULT_PRIORITY, addrlist, callback, &request_,
- BoundNetLog::Make(log_.get(), net::NetLog::SOURCE_NONE));
+ BoundNetLog::Make(log_.get(), net::NetLogSourceType::NONE));
if (ret != ERR_IO_PENDING)
callback.Run(ret);
}
« no previous file with comments | « net/spdy/spdy_stream_unittest.cc ('k') | net/udp/udp_socket_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698