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

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

Issue 502068: Remove the implicit fallback to DIRECT when proxies fail. This better matches... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Fix a comment typo Created 10 years, 11 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
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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 // This file contains the list of network errors. 5 // This file contains the list of network errors.
6 6
7 // 7 //
8 // Ranges: 8 // Ranges:
9 // 0- 99 System related errors 9 // 0- 99 System related errors
10 // 100-199 Connection related errors 10 // 100-199 Connection related errors
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 281
282 // Converting the response to target encoding failed. 282 // Converting the response to target encoding failed.
283 NET_ERROR(ENCODING_CONVERSION_FAILED, -333) 283 NET_ERROR(ENCODING_CONVERSION_FAILED, -333)
284 284
285 // The server sent an FTP directory listing in a format we do not understand. 285 // The server sent an FTP directory listing in a format we do not understand.
286 NET_ERROR(UNRECOGNIZED_FTP_DIRECTORY_LISTING_FORMAT, -334) 286 NET_ERROR(UNRECOGNIZED_FTP_DIRECTORY_LISTING_FORMAT, -334)
287 287
288 // Attempted use of an unknown FLIP stream id. 288 // Attempted use of an unknown FLIP stream id.
289 NET_ERROR(INVALID_FLIP_STREAM, -335) 289 NET_ERROR(INVALID_FLIP_STREAM, -335)
290 290
291 // There are no supported proxies in the provided list.
wtc 2010/01/07 20:12:27 Nit: "list" => "proxy list" Should this error be
292 NET_ERROR(EMPTY_PROXY_LIST, -336)
293
291 // The cache does not have the requested entry. 294 // The cache does not have the requested entry.
292 NET_ERROR(CACHE_MISS, -400) 295 NET_ERROR(CACHE_MISS, -400)
293 296
294 // Unable to read from the disk cache. 297 // Unable to read from the disk cache.
295 NET_ERROR(CACHE_READ_FAILURE, -401) 298 NET_ERROR(CACHE_READ_FAILURE, -401)
296 299
297 // ****NOTE THAT code -402 is available**** 300 // ****NOTE THAT code -402 is available****
298 301
299 // The operation is not supported for this entry. 302 // The operation is not supported for this entry.
300 NET_ERROR(CACHE_OPERATION_NOT_SUPPORTED, -403) 303 NET_ERROR(CACHE_OPERATION_NOT_SUPPORTED, -403)
301 304
302 // The server's response was insecure (e.g. there was a cert error). 305 // The server's response was insecure (e.g. there was a cert error).
303 NET_ERROR(INSECURE_RESPONSE, -501) 306 NET_ERROR(INSECURE_RESPONSE, -501)
OLDNEW
« no previous file with comments | « no previous file | net/http/http_network_transaction.cc » ('j') | net/http/http_network_transaction.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698