| Index: net/base/net_log_source_type_list.h
|
| ===================================================================
|
| --- net/base/net_log_source_type_list.h (revision 48758)
|
| +++ net/base/net_log_source_type_list.h (working copy)
|
| @@ -5,11 +5,13 @@
|
| // NOTE: No header guards are used, since this file is intended to be expanded
|
| // directly within a block where the SOURCE_TYPE macro is defined.
|
|
|
| -SOURCE_TYPE(NONE)
|
| -SOURCE_TYPE(URL_REQUEST)
|
| -SOURCE_TYPE(SOCKET_STREAM)
|
| -SOURCE_TYPE(INIT_PROXY_RESOLVER)
|
| -SOURCE_TYPE(CONNECT_JOB)
|
| -SOURCE_TYPE(SOCKET)
|
| -SOURCE_TYPE(SPDY_SESSION)
|
| +SOURCE_TYPE(NONE, -1)
|
|
|
| +SOURCE_TYPE(URL_REQUEST, 0)
|
| +SOURCE_TYPE(SOCKET_STREAM, 1)
|
| +SOURCE_TYPE(INIT_PROXY_RESOLVER, 2)
|
| +SOURCE_TYPE(CONNECT_JOB, 3)
|
| +SOURCE_TYPE(SOCKET, 4)
|
| +SOURCE_TYPE(SPDY_SESSION, 5)
|
| +
|
| +SOURCE_TYPE(COUNT, 6) // Always keep this as the last entry.
|
|
|