| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1200 EVENT_TYPE(CHROME_EXTENSION_MODIFIED_HEADERS) | 1200 EVENT_TYPE(CHROME_EXTENSION_MODIFIED_HEADERS) |
| 1201 | 1201 |
| 1202 // This event is created when a Chrome extension tried to modify a request | 1202 // This event is created when a Chrome extension tried to modify a request |
| 1203 // but was ignored due to a conflict. | 1203 // but was ignored due to a conflict. |
| 1204 // | 1204 // |
| 1205 // { | 1205 // { |
| 1206 // "extension_id": <Extension ID that was ignored> | 1206 // "extension_id": <Extension ID that was ignored> |
| 1207 // } | 1207 // } |
| 1208 EVENT_TYPE(CHROME_EXTENSION_IGNORED_DUE_TO_CONFLICT) | 1208 EVENT_TYPE(CHROME_EXTENSION_IGNORED_DUE_TO_CONFLICT) |
| 1209 | 1209 |
| 1210 // This event is created when a Chrome extension provides authentication |
| 1211 // credentials. |
| 1212 // |
| 1213 // { |
| 1214 // "extension_id": <Extension ID that provides credentials> |
| 1215 // } |
| 1216 EVENT_TYPE(CHROME_EXTENSION_PROVIDE_AUTH_CREDENTIALS) |
| 1217 |
| 1210 // ------------------------------------------------------------------------ | 1218 // ------------------------------------------------------------------------ |
| 1211 // HostBlacklistManager | 1219 // HostBlacklistManager |
| 1212 // ------------------------------------------------------------------------ | 1220 // ------------------------------------------------------------------------ |
| 1213 | 1221 |
| 1214 // TODO(joaodasilva): Layering violation, see comment above. | 1222 // TODO(joaodasilva): Layering violation, see comment above. |
| 1215 // http://crbug.com/90674. | 1223 // http://crbug.com/90674. |
| 1216 | 1224 |
| 1217 // This event is created when a request is blocked by a policy. | 1225 // This event is created when a request is blocked by a policy. |
| 1218 EVENT_TYPE(CHROME_POLICY_ABORTED_REQUEST) | 1226 EVENT_TYPE(CHROME_POLICY_ABORTED_REQUEST) |
| OLD | NEW |