| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 within a block where the SOURCE_TYPE macro is defined. | 6 // directly within a block where the SOURCE_TYPE macro is defined. |
| 7 | 7 |
| 8 // Used for global events which don't correspond to a particular entity. | 8 // Used for global events which don't correspond to a particular entity. |
| 9 SOURCE_TYPE(NONE) | 9 SOURCE_TYPE(NONE) |
| 10 | 10 |
| 11 SOURCE_TYPE(URL_REQUEST) | 11 SOURCE_TYPE(URL_REQUEST) |
| 12 SOURCE_TYPE(SOCKET_STREAM) | 12 SOURCE_TYPE(SOCKET_STREAM) |
| 13 SOURCE_TYPE(PROXY_SCRIPT_DECIDER) | 13 SOURCE_TYPE(PROXY_SCRIPT_DECIDER) |
| 14 SOURCE_TYPE(CONNECT_JOB) | 14 SOURCE_TYPE(CONNECT_JOB) |
| 15 SOURCE_TYPE(SOCKET) | 15 SOURCE_TYPE(SOCKET) |
| 16 SOURCE_TYPE(SPDY_SESSION) | 16 SOURCE_TYPE(SPDY_SESSION) |
| 17 SOURCE_TYPE(QUIC_SESSION) | 17 SOURCE_TYPE(QUIC_SESSION) |
| 18 SOURCE_TYPE(HOST_RESOLVER_IMPL_REQUEST) | 18 SOURCE_TYPE(HOST_RESOLVER_IMPL_REQUEST) |
| 19 SOURCE_TYPE(HOST_RESOLVER_IMPL_JOB) | 19 SOURCE_TYPE(HOST_RESOLVER_IMPL_JOB) |
| 20 SOURCE_TYPE(DISK_CACHE_ENTRY) | 20 SOURCE_TYPE(DISK_CACHE_ENTRY) |
| 21 SOURCE_TYPE(MEMORY_CACHE_ENTRY) | 21 SOURCE_TYPE(MEMORY_CACHE_ENTRY) |
| 22 SOURCE_TYPE(HTTP_STREAM_JOB) | 22 SOURCE_TYPE(HTTP_STREAM_JOB) |
| 23 SOURCE_TYPE(EXPONENTIAL_BACKOFF_THROTTLING) | 23 SOURCE_TYPE(EXPONENTIAL_BACKOFF_THROTTLING) |
| 24 SOURCE_TYPE(UDP_SOCKET) | 24 SOURCE_TYPE(UDP_SOCKET) |
| 25 SOURCE_TYPE(CERT_VERIFIER_JOB) | 25 SOURCE_TYPE(CERT_VERIFIER_JOB) |
| 26 SOURCE_TYPE(HTTP_PIPELINED_CONNECTION) | |
| 27 SOURCE_TYPE(DOWNLOAD) | 26 SOURCE_TYPE(DOWNLOAD) |
| 28 SOURCE_TYPE(FILESTREAM) | 27 SOURCE_TYPE(FILESTREAM) |
| 29 SOURCE_TYPE(DNS_PROBER) | 28 SOURCE_TYPE(DNS_PROBER) |
| 30 SOURCE_TYPE(PROXY_CLIENT_SOCKET) | 29 SOURCE_TYPE(PROXY_CLIENT_SOCKET) |
| 31 SOURCE_TYPE(IPV6_REACHABILITY_CHECK) | 30 SOURCE_TYPE(IPV6_REACHABILITY_CHECK) |
| OLD | NEW |