| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/cronet/android/url_request_context_peer.h" | 5 #include "components/cronet/android/url_request_context_peer.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "net/base/net_errors.h" | 8 #include "net/base/net_errors.h" |
| 9 #include "net/base/net_log_logger.h" | 9 #include "net/base/net_log_logger.h" |
| 10 #include "net/cert/cert_verifier.h" | 10 #include "net/cert/cert_verifier.h" |
| 11 #include "net/http/http_auth_handler_factory.h" | 11 #include "net/http/http_auth_handler_factory.h" |
| 12 #include "net/http/http_network_layer.h" | 12 #include "net/http/http_network_layer.h" |
| 13 #include "net/http/http_server_properties_impl.h" | 13 #include "net/http/http_server_properties_impl.h" |
| 14 #include "net/proxy/proxy_config_service_fixed.h" | 14 #include "net/proxy/proxy_config_service_fixed.h" |
| 15 #include "net/proxy/proxy_service.h" | 15 #include "net/proxy/proxy_service.h" |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 } | 252 } |
| 253 } | 253 } |
| 254 | 254 |
| 255 void NetLogObserver::OnAddEntry(const net::NetLog::Entry& entry) { | 255 void NetLogObserver::OnAddEntry(const net::NetLog::Entry& entry) { |
| 256 if (VLOG_IS_ON(2)) { | 256 if (VLOG_IS_ON(2)) { |
| 257 VLOG(2) << "Net log entry: type=" << entry.type() | 257 VLOG(2) << "Net log entry: type=" << entry.type() |
| 258 << ", source=" << entry.source().type | 258 << ", source=" << entry.source().type |
| 259 << ", phase=" << entry.phase(); | 259 << ", phase=" << entry.phase(); |
| 260 } | 260 } |
| 261 } | 261 } |
| OLD | NEW |