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

Side by Side Diff: net/base/net_log_event_type_list.h

Issue 2822043: Add the capability to run multiple proxy PAC scripts in parallel.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Re-upload after revert Created 10 years, 5 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
« no previous file with comments | « net/base/host_resolver_impl.h ('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 (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // NOTE: No header guards are used, since this file is intended to be expanded 5 // NOTE: No header guards are used, since this file is intended to be expanded
6 // directly into net_log.h. DO NOT include this file anywhere else. 6 // directly into net_log.h. DO NOT include this file anywhere else.
7 7
8 // -------------------------------------------------------------------------- 8 // --------------------------------------------------------------------------
9 // General pseudo-events 9 // General pseudo-events
10 // -------------------------------------------------------------------------- 10 // --------------------------------------------------------------------------
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 103
104 // Measures the time taken to execute the "myIpAddressEx()" javascript binding. 104 // Measures the time taken to execute the "myIpAddressEx()" javascript binding.
105 EVENT_TYPE(PROXY_RESOLVER_V8_MY_IP_ADDRESS_EX) 105 EVENT_TYPE(PROXY_RESOLVER_V8_MY_IP_ADDRESS_EX)
106 106
107 // Measures the time taken to execute the "dnsResolve()" javascript binding. 107 // Measures the time taken to execute the "dnsResolve()" javascript binding.
108 EVENT_TYPE(PROXY_RESOLVER_V8_DNS_RESOLVE) 108 EVENT_TYPE(PROXY_RESOLVER_V8_DNS_RESOLVE)
109 109
110 // Measures the time taken to execute the "dnsResolveEx()" javascript binding. 110 // Measures the time taken to execute the "dnsResolveEx()" javascript binding.
111 EVENT_TYPE(PROXY_RESOLVER_V8_DNS_RESOLVE_EX) 111 EVENT_TYPE(PROXY_RESOLVER_V8_DNS_RESOLVE_EX)
112 112
113 // Measures the time that a proxy resolve request was stalled waiting for the 113 // Measures the time that a proxy resolve request was stalled waiting for a
114 // proxy resolver thread to free-up. 114 // proxy resolver thread to free-up.
115 EVENT_TYPE(WAITING_FOR_SINGLE_PROXY_RESOLVER_THREAD) 115 EVENT_TYPE(WAITING_FOR_PROXY_RESOLVER_THREAD)
116
117 // This event is emitted just before a PAC request is bound to a thread. It
118 // contains these parameters:
119 //
120 // {
121 // "thread_number": <Identifier for the PAC thread that is going to
122 // run this request>
123 // }
124 EVENT_TYPE(SUBMITTED_TO_RESOLVER_THREAD)
116 125
117 // ------------------------------------------------------------------------ 126 // ------------------------------------------------------------------------
118 // ClientSocket 127 // ClientSocket
119 // ------------------------------------------------------------------------ 128 // ------------------------------------------------------------------------
120 129
121 // The start/end of a TCP connect(). This corresponds with a call to 130 // The start/end of a TCP connect(). This corresponds with a call to
122 // TCPClientSocket::Connect(). 131 // TCPClientSocket::Connect().
123 // 132 //
124 // The START event contains these parameters: 133 // The START event contains these parameters:
125 // 134 //
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 584
576 // ------------------------------------------------------------------------ 585 // ------------------------------------------------------------------------
577 // Global events 586 // Global events
578 // ------------------------------------------------------------------------ 587 // ------------------------------------------------------------------------
579 // These are events which are not grouped by source id, as they have no 588 // These are events which are not grouped by source id, as they have no
580 // context. 589 // context.
581 590
582 // This event is emitted whenever NetworkChangeNotifier determines that the 591 // This event is emitted whenever NetworkChangeNotifier determines that the
583 // underlying network has changed. 592 // underlying network has changed.
584 EVENT_TYPE(NETWORK_IP_ADDRESSSES_CHANGED) 593 EVENT_TYPE(NETWORK_IP_ADDRESSSES_CHANGED)
OLDNEW
« no previous file with comments | « net/base/host_resolver_impl.h ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698