| 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 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 // In the event of a failure, a many end events will have a |net_error| | 8 // In the event of a failure, a many end events will have a |net_error| |
| 9 // parameter with the integer error code associated with the failure. Most | 9 // parameter with the integer error code associated with the failure. Most |
| 10 // of these parameters are not individually documented. | 10 // of these parameters are not individually documented. |
| (...skipping 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1892 | 1892 |
| 1893 // This event is created when a CertVerifier request attaches to a job. | 1893 // This event is created when a CertVerifier request attaches to a job. |
| 1894 // | 1894 // |
| 1895 // The event parameters are: | 1895 // The event parameters are: |
| 1896 // { | 1896 // { |
| 1897 // "source_dependency": <Source identifer for the job we are bound to>, | 1897 // "source_dependency": <Source identifer for the job we are bound to>, |
| 1898 // } | 1898 // } |
| 1899 EVENT_TYPE(CERT_VERIFIER_REQUEST_BOUND_TO_JOB) | 1899 EVENT_TYPE(CERT_VERIFIER_REQUEST_BOUND_TO_JOB) |
| 1900 | 1900 |
| 1901 // ------------------------------------------------------------------------ | 1901 // ------------------------------------------------------------------------ |
| 1902 // HttpPipelinedConnection | |
| 1903 // ------------------------------------------------------------------------ | |
| 1904 | |
| 1905 // The start/end of a HttpPipelinedConnection. | |
| 1906 // { | |
| 1907 // "host_and_port": <The host-port string>, | |
| 1908 // } | |
| 1909 EVENT_TYPE(HTTP_PIPELINED_CONNECTION) | |
| 1910 | |
| 1911 // This event is created when a pipelined connection finishes sending a request. | |
| 1912 // { | |
| 1913 // "source_dependency": <Source id of the requesting stream>, | |
| 1914 // } | |
| 1915 EVENT_TYPE(HTTP_PIPELINED_CONNECTION_SENT_REQUEST) | |
| 1916 | |
| 1917 // This event is created when a pipelined connection finishes receiving the | |
| 1918 // response headers. | |
| 1919 // { | |
| 1920 // "source_dependency": <Source id of the requesting stream>, | |
| 1921 // "feedback": <The value of HttpPipelinedConnection::Feedback indicating | |
| 1922 // pipeline capability>, | |
| 1923 // } | |
| 1924 EVENT_TYPE(HTTP_PIPELINED_CONNECTION_RECEIVED_HEADERS) | |
| 1925 | |
| 1926 // This event is created when a pipelined stream closes. | |
| 1927 // { | |
| 1928 // "source_dependency": <Source id of the requesting stream>, | |
| 1929 // "must_close": <True if the pipeline must shut down>, | |
| 1930 // } | |
| 1931 EVENT_TYPE(HTTP_PIPELINED_CONNECTION_STREAM_CLOSED) | |
| 1932 | |
| 1933 // ------------------------------------------------------------------------ | |
| 1934 // Download start events. | 1902 // Download start events. |
| 1935 // ------------------------------------------------------------------------ | 1903 // ------------------------------------------------------------------------ |
| 1936 | 1904 |
| 1937 // This event is created when a download is started, and lets the URL request | 1905 // This event is created when a download is started, and lets the URL request |
| 1938 // event source know what download source it is using. | 1906 // event source know what download source it is using. |
| 1939 // { | 1907 // { |
| 1940 // "source_dependency": <Source id of the download>, | 1908 // "source_dependency": <Source id of the download>, |
| 1941 // } | 1909 // } |
| 1942 EVENT_TYPE(DOWNLOAD_STARTED) | 1910 EVENT_TYPE(DOWNLOAD_STARTED) |
| 1943 | 1911 |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2315 // entry. It contains no parameters. | 2283 // entry. It contains no parameters. |
| 2316 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN) | 2284 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN) |
| 2317 | 2285 |
| 2318 // This event is created when the Simple Cache finishes a CloseEntry call. It | 2286 // This event is created when the Simple Cache finishes a CloseEntry call. It |
| 2319 // contains no parameters. | 2287 // contains no parameters. |
| 2320 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END) | 2288 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END) |
| 2321 | 2289 |
| 2322 // This event is created (in a source of the same name) when the internal DNS | 2290 // This event is created (in a source of the same name) when the internal DNS |
| 2323 // resolver creates a UDP socket to check for global IPv6 connectivity. | 2291 // resolver creates a UDP socket to check for global IPv6 connectivity. |
| 2324 EVENT_TYPE(IPV6_REACHABILITY_CHECK) | 2292 EVENT_TYPE(IPV6_REACHABILITY_CHECK) |
| OLD | NEW |