Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Side by Side Diff: net/log/net_log_event_type_list.h

Issue 2650803004: Wire NetLog into the TreeStateTracker (Closed)
Patch Set: Looking for entry first Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 // { 663 // {
664 // "certificate": <An X.509 certificate, same format as in 664 // "certificate": <An X.509 certificate, same format as in
665 // CERT_VERIFIER_JOB.> 665 // CERT_VERIFIER_JOB.>
666 // "policy_enforcement_required": <boolean> 666 // "policy_enforcement_required": <boolean>
667 // "build_timely": <boolean> 667 // "build_timely": <boolean>
668 // "ct_compliance_status": <string describing compliance status> 668 // "ct_compliance_status": <string describing compliance status>
669 // "ev_whitelist_version": <optional; string representing whitelist version> 669 // "ev_whitelist_version": <optional; string representing whitelist version>
670 // } 670 // }
671 EVENT_TYPE(EV_CERT_CT_COMPLIANCE_CHECKED) 671 EVENT_TYPE(EV_CERT_CT_COMPLIANCE_CHECKED)
672 672
673 // A Certificate Transparency log entry was audited for inclusion in the
674 // log.
675 //
676 // The following parameters are attached to the event:
677 // {
678 // "log_entry": <hex-encoded hash of the log entry>
679 // "log_id": <hex-encoded hash of the CT log>
680 // "success": <boolean>
681 // }
682
683 EVENT_TYPE(CT_LOG_ENTRY_AUDITED)
684
673 // ------------------------------------------------------------------------ 685 // ------------------------------------------------------------------------
674 // DatagramSocket 686 // DatagramSocket
675 // ------------------------------------------------------------------------ 687 // ------------------------------------------------------------------------
676 688
677 // The start/end of a UDP client connecting. 689 // The start/end of a UDP client connecting.
678 // 690 //
679 // The START event contains these parameters: 691 // The START event contains these parameters:
680 // 692 //
681 // { 693 // {
682 // "address": <Remote address being connected to>, 694 // "address": <Remote address being connected to>,
(...skipping 2405 matching lines...) Expand 10 before | Expand all | Expand 10 after
3088 // quality of the network has changed. 3100 // quality of the network has changed.
3089 // parameters: 3101 // parameters:
3090 // { 3102 // {
3091 // "http_rtt": <Current estimate of the HTTP RTT>, 3103 // "http_rtt": <Current estimate of the HTTP RTT>,
3092 // "transport_rtt": <Current estimate of the transport RTT>, 3104 // "transport_rtt": <Current estimate of the transport RTT>,
3093 // "downstream_throughput": <Current estimate of the downstream throughput>, 3105 // "downstream_throughput": <Current estimate of the downstream throughput>,
3094 // "effective_connection_type": <Current estimate of the effective connection 3106 // "effective_connection_type": <Current estimate of the effective connection
3095 // type>, 3107 // type>,
3096 // } 3108 // }
3097 EVENT_TYPE(NETWORK_QUALITY_CHANGED) 3109 EVENT_TYPE(NETWORK_QUALITY_CHANGED)
OLDNEW
« no previous file with comments | « components/certificate_transparency/tree_state_tracker_unittest.cc ('k') | net/log/net_log_source_type_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698