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

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

Issue 1408433006: Support tls-server-end-point channel bindings for HTTP authentication. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Narrower dependencies, update comments, address review comments. Created 4 years, 9 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 1854 matching lines...) Expand 10 before | Expand all | Expand 10 after
1865 // ------------------------------------------------------------------------ 1865 // ------------------------------------------------------------------------
1866 // HTTP Authentication 1866 // HTTP Authentication
1867 // ------------------------------------------------------------------------ 1867 // ------------------------------------------------------------------------
1868 1868
1869 // The time spent authenticating to the proxy. 1869 // The time spent authenticating to the proxy.
1870 EVENT_TYPE(AUTH_PROXY) 1870 EVENT_TYPE(AUTH_PROXY)
1871 1871
1872 // The time spent authentication to the server. 1872 // The time spent authentication to the server.
1873 EVENT_TYPE(AUTH_SERVER) 1873 EVENT_TYPE(AUTH_SERVER)
1874 1874
1875 // The channel bindings generated for the connection.
1876 EVENT_TYPE(AUTH_CHANNEL_BINDINGS)
1877
1875 // ------------------------------------------------------------------------ 1878 // ------------------------------------------------------------------------
1876 // HTML5 Application Cache 1879 // HTML5 Application Cache
1877 // ------------------------------------------------------------------------ 1880 // ------------------------------------------------------------------------
1878 1881
1879 // This event is emitted whenever a request is satisfied directly from 1882 // This event is emitted whenever a request is satisfied directly from
1880 // the appcache. 1883 // the appcache.
1881 EVENT_TYPE(APPCACHE_DELIVERING_CACHED_RESPONSE) 1884 EVENT_TYPE(APPCACHE_DELIVERING_CACHED_RESPONSE)
1882 1885
1883 // This event is emitted whenever the appcache uses a fallback response. 1886 // This event is emitted whenever the appcache uses a fallback response.
1884 EVENT_TYPE(APPCACHE_DELIVERING_FALLBACK_RESPONSE) 1887 EVENT_TYPE(APPCACHE_DELIVERING_FALLBACK_RESPONSE)
(...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after
2792 // The start/end of some portion of the SAFE_BROWSING_CHECKING_URL during which 2795 // The start/end of some portion of the SAFE_BROWSING_CHECKING_URL during which
2793 // the request is delayed due to that check. 2796 // the request is delayed due to that check.
2794 // 2797 //
2795 // The BEGIN phase contains the following parameters: 2798 // The BEGIN phase contains the following parameters:
2796 // { 2799 // {
2797 // "url": <The URL being checked>, 2800 // "url": <The URL being checked>,
2798 // "defer_reason" : < "at_start", "at_response", "redirect", 2801 // "defer_reason" : < "at_start", "at_response", "redirect",
2799 // "resumed_redirect", "unchecked_redirect"> 2802 // "resumed_redirect", "unchecked_redirect">
2800 // } 2803 // }
2801 EVENT_TYPE(SAFE_BROWSING_DEFERRED) 2804 EVENT_TYPE(SAFE_BROWSING_DEFERRED)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698