| OLD | NEW |
| 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 Loading... |
| 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 a | 113 // Measures the time that a proxy resolve request was stalled waiting for the |
| 114 // proxy resolver thread to free-up. | 114 // proxy resolver thread to free-up. |
| 115 EVENT_TYPE(WAITING_FOR_PROXY_RESOLVER_THREAD) | 115 EVENT_TYPE(WAITING_FOR_SINGLE_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) | |
| 125 | 116 |
| 126 // ------------------------------------------------------------------------ | 117 // ------------------------------------------------------------------------ |
| 127 // ClientSocket | 118 // ClientSocket |
| 128 // ------------------------------------------------------------------------ | 119 // ------------------------------------------------------------------------ |
| 129 | 120 |
| 130 // The start/end of a TCP connect(). This corresponds with a call to | 121 // The start/end of a TCP connect(). This corresponds with a call to |
| 131 // TCPClientSocket::Connect(). | 122 // TCPClientSocket::Connect(). |
| 132 // | 123 // |
| 133 // The START event contains these parameters: | 124 // The START event contains these parameters: |
| 134 // | 125 // |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 | 575 |
| 585 // ------------------------------------------------------------------------ | 576 // ------------------------------------------------------------------------ |
| 586 // Global events | 577 // Global events |
| 587 // ------------------------------------------------------------------------ | 578 // ------------------------------------------------------------------------ |
| 588 // These are events which are not grouped by source id, as they have no | 579 // These are events which are not grouped by source id, as they have no |
| 589 // context. | 580 // context. |
| 590 | 581 |
| 591 // This event is emitted whenever NetworkChangeNotifier determines that the | 582 // This event is emitted whenever NetworkChangeNotifier determines that the |
| 592 // underlying network has changed. | 583 // underlying network has changed. |
| 593 EVENT_TYPE(NETWORK_IP_ADDRESSSES_CHANGED) | 584 EVENT_TYPE(NETWORK_IP_ADDRESSSES_CHANGED) |
| OLD | NEW |