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

Unified Diff: chrome/browser/extensions/api/dial/dial_service.cc

Issue 2333923004: Extracting NetLog inner classes into their own classes. (Closed)
Patch Set: Some nit fixes and better, impl-agnostic naming of net_log_parameters_callback_typedef.h -> net/log… Created 4 years, 2 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: chrome/browser/extensions/api/dial/dial_service.cc
diff --git a/chrome/browser/extensions/api/dial/dial_service.cc b/chrome/browser/extensions/api/dial/dial_service.cc
index 06c7d0cc19b7b1e3a827ef8f1506df506f332520..06c7398d3cd5150536db90c917d8c30d343e3c7f 100644
--- a/chrome/browser/extensions/api/dial/dial_service.cc
+++ b/chrome/browser/extensions/api/dial/dial_service.cc
@@ -32,6 +32,7 @@
#include "net/base/network_interfaces.h"
#include "net/http/http_response_headers.h"
#include "net/http/http_util.h"
+#include "net/log/net_log.h"
#include "net/log/net_log_source_type.h"
#include "url/gurl.h"
@@ -164,7 +165,7 @@ DialServiceImpl::DialSocket::~DialSocket() {
bool DialServiceImpl::DialSocket::CreateAndBindSocket(
const IPAddress& bind_ip_address,
net::NetLog* net_log,
- net::NetLog::Source net_log_source) {
+ net::NetLogSource net_log_source) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
DCHECK(!socket_);
DCHECK(bind_ip_address.IsIPv4());

Powered by Google App Engine
This is Rietveld 408576698