| 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 | 534 |
| 535 // An SSL connection needs to be retried with a lower protocol version because | 535 // An SSL connection needs to be retried with a lower protocol version because |
| 536 // the server may be intolerant of the protocol version we offered. | 536 // the server may be intolerant of the protocol version we offered. |
| 537 // The following parameters are attached to the event: | 537 // The following parameters are attached to the event: |
| 538 // { | 538 // { |
| 539 // "host_and_port": <String encoding the host and port>, | 539 // "host_and_port": <String encoding the host and port>, |
| 540 // "net_error": <Net integer error code>, | 540 // "net_error": <Net integer error code>, |
| 541 // "version_before": <SSL version before the fallback>, | 541 // "version_before": <SSL version before the fallback>, |
| 542 // "version_after": <SSL version after the fallback>, | 542 // "version_after": <SSL version after the fallback>, |
| 543 // } | 543 // } |
| 544 // |
| 545 // TODO(davidben): Remove this event and the corresponding log_view_painter.js |
| 546 // logic in M56. |
| 544 EVENT_TYPE(SSL_VERSION_FALLBACK) | 547 EVENT_TYPE(SSL_VERSION_FALLBACK) |
| 545 | 548 |
| 546 // An SSL connection needs to be retried with more cipher suites because the | 549 // An SSL connection needs to be retried with more cipher suites because the |
| 547 // server may require a deprecated cipher suite. The following parameters are | 550 // server may require a deprecated cipher suite. The following parameters are |
| 548 // attached to the event: | 551 // attached to the event: |
| 549 // { | 552 // { |
| 550 // "host_and_port": <String encoding the host and port>, | 553 // "host_and_port": <String encoding the host and port>, |
| 551 // "net_error": <Net integer error code>, | 554 // "net_error": <Net integer error code>, |
| 552 // } | 555 // } |
| 553 EVENT_TYPE(SSL_CIPHER_FALLBACK) | 556 EVENT_TYPE(SSL_CIPHER_FALLBACK) |
| (...skipping 2424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2978 // The start/end of some portion of the SAFE_BROWSING_CHECKING_URL during which | 2981 // The start/end of some portion of the SAFE_BROWSING_CHECKING_URL during which |
| 2979 // the request is delayed due to that check. | 2982 // the request is delayed due to that check. |
| 2980 // | 2983 // |
| 2981 // The BEGIN phase contains the following parameters: | 2984 // The BEGIN phase contains the following parameters: |
| 2982 // { | 2985 // { |
| 2983 // "url": <The URL being checked>, | 2986 // "url": <The URL being checked>, |
| 2984 // "defer_reason" : < "at_start", "at_response", "redirect", | 2987 // "defer_reason" : < "at_start", "at_response", "redirect", |
| 2985 // "resumed_redirect", "unchecked_redirect"> | 2988 // "resumed_redirect", "unchecked_redirect"> |
| 2986 // } | 2989 // } |
| 2987 EVENT_TYPE(SAFE_BROWSING_DEFERRED) | 2990 EVENT_TYPE(SAFE_BROWSING_DEFERRED) |
| OLD | NEW |