| 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 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1789 // ------------------------------------------------------------------------ | 1789 // ------------------------------------------------------------------------ |
| 1790 // HTTP Authentication | 1790 // HTTP Authentication |
| 1791 // ------------------------------------------------------------------------ | 1791 // ------------------------------------------------------------------------ |
| 1792 | 1792 |
| 1793 // The time spent authenticating to the proxy. | 1793 // The time spent authenticating to the proxy. |
| 1794 EVENT_TYPE(AUTH_PROXY) | 1794 EVENT_TYPE(AUTH_PROXY) |
| 1795 | 1795 |
| 1796 // The time spent authentication to the server. | 1796 // The time spent authentication to the server. |
| 1797 EVENT_TYPE(AUTH_SERVER) | 1797 EVENT_TYPE(AUTH_SERVER) |
| 1798 | 1798 |
| 1799 // Unexepcted failure while trying to create an HttpAuthhandler. |
| 1800 // { |
| 1801 // "challenge": <Authentication challenge that caused the failure>, |
| 1802 // "net_error": <net::Error> |
| 1803 // } |
| 1804 EVENT_TYPE(AUTH_HANDLER_CREATION_FAILURE) |
| 1805 |
| 1799 // ------------------------------------------------------------------------ | 1806 // ------------------------------------------------------------------------ |
| 1800 // HTML5 Application Cache | 1807 // HTML5 Application Cache |
| 1801 // ------------------------------------------------------------------------ | 1808 // ------------------------------------------------------------------------ |
| 1802 | 1809 |
| 1803 // This event is emitted whenever a request is satisfied directly from | 1810 // This event is emitted whenever a request is satisfied directly from |
| 1804 // the appcache. | 1811 // the appcache. |
| 1805 EVENT_TYPE(APPCACHE_DELIVERING_CACHED_RESPONSE) | 1812 EVENT_TYPE(APPCACHE_DELIVERING_CACHED_RESPONSE) |
| 1806 | 1813 |
| 1807 // This event is emitted whenever the appcache uses a fallback response. | 1814 // This event is emitted whenever the appcache uses a fallback response. |
| 1808 EVENT_TYPE(APPCACHE_DELIVERING_FALLBACK_RESPONSE) | 1815 EVENT_TYPE(APPCACHE_DELIVERING_FALLBACK_RESPONSE) |
| (...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2662 // The start/end of some portion of the SAFE_BROWSING_CHECKING_URL during which | 2669 // The start/end of some portion of the SAFE_BROWSING_CHECKING_URL during which |
| 2663 // the request is delayed due to that check. | 2670 // the request is delayed due to that check. |
| 2664 // | 2671 // |
| 2665 // The BEGIN phase contains the following parameters: | 2672 // The BEGIN phase contains the following parameters: |
| 2666 // { | 2673 // { |
| 2667 // "url": <The URL being checked>, | 2674 // "url": <The URL being checked>, |
| 2668 // "defer_reason" : < "at_start", "at_response", "redirect", | 2675 // "defer_reason" : < "at_start", "at_response", "redirect", |
| 2669 // "resumed_redirect", "unchecked_redirect"> | 2676 // "resumed_redirect", "unchecked_redirect"> |
| 2670 // } | 2677 // } |
| 2671 EVENT_TYPE(SAFE_BROWSING_DEFERRED) | 2678 EVENT_TYPE(SAFE_BROWSING_DEFERRED) |
| OLD | NEW |