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

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

Issue 8015004: webRequest.onAuthRequired listeners can provide authentication credentials. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 9 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/data/extensions/api_test/webrequest/test_complex.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/webrequest/test_complex.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698