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

Side by Side Diff: components/cronet/android/url_request_context_peer.cc

Issue 230443005: Move cronet from //net into //components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync to r262794 Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « components/cronet/android/url_request_context_peer.h ('k') | components/cronet/android/url_request_peer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698