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

Side by Side Diff: net/log/net_log_util.cc

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 years, 4 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
« no previous file with comments | « net/http/http_stream_factory_impl_unittest.cc ('k') | net/net.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/log/net_log_util.h" 5 #include "net/log/net_log_util.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 14 matching lines...) Expand all
25 #include "net/dns/host_cache.h" 25 #include "net/dns/host_cache.h"
26 #include "net/dns/host_resolver.h" 26 #include "net/dns/host_resolver.h"
27 #include "net/http/http_cache.h" 27 #include "net/http/http_cache.h"
28 #include "net/http/http_network_session.h" 28 #include "net/http/http_network_session.h"
29 #include "net/http/http_server_properties.h" 29 #include "net/http/http_server_properties.h"
30 #include "net/http/http_transaction_factory.h" 30 #include "net/http/http_transaction_factory.h"
31 #include "net/log/net_log.h" 31 #include "net/log/net_log.h"
32 #include "net/proxy/proxy_config.h" 32 #include "net/proxy/proxy_config.h"
33 #include "net/proxy/proxy_retry_info.h" 33 #include "net/proxy/proxy_retry_info.h"
34 #include "net/proxy/proxy_service.h" 34 #include "net/proxy/proxy_service.h"
35 #include "net/quic/quic_protocol.h" 35 #include "net/quic/core/quic_protocol.h"
36 #include "net/quic/quic_utils.h" 36 #include "net/quic/core/quic_utils.h"
37 #include "net/socket/ssl_client_socket.h" 37 #include "net/socket/ssl_client_socket.h"
38 #include "net/url_request/url_request.h" 38 #include "net/url_request/url_request.h"
39 #include "net/url_request/url_request_context.h" 39 #include "net/url_request/url_request_context.h"
40 40
41 namespace net { 41 namespace net {
42 42
43 namespace { 43 namespace {
44 44
45 // This should be incremented when significant changes are made that will 45 // This should be incremented when significant changes are made that will
46 // invalidate the old loading code. 46 // invalidate the old loading code.
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 // fine, since GetRequestStateAsValue() ignores the capture mode. 537 // fine, since GetRequestStateAsValue() ignores the capture mode.
538 NetLog::EntryData entry_data( 538 NetLog::EntryData entry_data(
539 NetLog::TYPE_REQUEST_ALIVE, request->net_log().source(), 539 NetLog::TYPE_REQUEST_ALIVE, request->net_log().source(),
540 NetLog::PHASE_BEGIN, request->creation_time(), &callback); 540 NetLog::PHASE_BEGIN, request->creation_time(), &callback);
541 NetLog::Entry entry(&entry_data, NetLogCaptureMode::Default()); 541 NetLog::Entry entry(&entry_data, NetLogCaptureMode::Default());
542 observer->OnAddEntry(entry); 542 observer->OnAddEntry(entry);
543 } 543 }
544 } 544 }
545 545
546 } // namespace net 546 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_stream_factory_impl_unittest.cc ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698