| OLD | NEW |
| 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 // This file intentionally does not have header guards, it's included | 5 // This file intentionally does not have header guards, it's included |
| 6 // inside a macro to generate enum. | 6 // inside a macro to generate enum. |
| 7 | 7 |
| 8 // This file contains the list of network errors. | 8 // This file contains the list of network errors. |
| 9 | 9 |
| 10 // | 10 // |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 | 458 |
| 459 // The server sent an FTP directory listing in a format we do not understand. | 459 // The server sent an FTP directory listing in a format we do not understand. |
| 460 NET_ERROR(UNRECOGNIZED_FTP_DIRECTORY_LISTING_FORMAT, -334) | 460 NET_ERROR(UNRECOGNIZED_FTP_DIRECTORY_LISTING_FORMAT, -334) |
| 461 | 461 |
| 462 // Attempted use of an unknown SPDY stream id. | 462 // Attempted use of an unknown SPDY stream id. |
| 463 NET_ERROR(INVALID_SPDY_STREAM, -335) | 463 NET_ERROR(INVALID_SPDY_STREAM, -335) |
| 464 | 464 |
| 465 // There are no supported proxies in the provided list. | 465 // There are no supported proxies in the provided list. |
| 466 NET_ERROR(NO_SUPPORTED_PROXIES, -336) | 466 NET_ERROR(NO_SUPPORTED_PROXIES, -336) |
| 467 | 467 |
| 468 // There is a SPDY protocol framing error. | 468 // There is a SPDY protocol error. |
| 469 NET_ERROR(SPDY_PROTOCOL_ERROR, -337) | 469 NET_ERROR(SPDY_PROTOCOL_ERROR, -337) |
| 470 | 470 |
| 471 // Credentials could not be established during HTTP Authentication. | 471 // Credentials could not be established during HTTP Authentication. |
| 472 NET_ERROR(INVALID_AUTH_CREDENTIALS, -338) | 472 NET_ERROR(INVALID_AUTH_CREDENTIALS, -338) |
| 473 | 473 |
| 474 // An HTTP Authentication scheme was tried which is not supported on this | 474 // An HTTP Authentication scheme was tried which is not supported on this |
| 475 // machine. | 475 // machine. |
| 476 NET_ERROR(UNSUPPORTED_AUTH_SCHEME, -339) | 476 NET_ERROR(UNSUPPORTED_AUTH_SCHEME, -339) |
| 477 | 477 |
| 478 // Detecting the encoding of the response failed. | 478 // Detecting the encoding of the response failed. |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 NET_ERROR(DNS_TIMED_OUT, -803) | 661 NET_ERROR(DNS_TIMED_OUT, -803) |
| 662 | 662 |
| 663 // The entry was not found in cache, for cache-only lookups. | 663 // The entry was not found in cache, for cache-only lookups. |
| 664 NET_ERROR(DNS_CACHE_MISS, -804) | 664 NET_ERROR(DNS_CACHE_MISS, -804) |
| 665 | 665 |
| 666 // Suffix search list rules prevent resolution of the given host name. | 666 // Suffix search list rules prevent resolution of the given host name. |
| 667 NET_ERROR(DNS_SEARCH_EMPTY, -805) | 667 NET_ERROR(DNS_SEARCH_EMPTY, -805) |
| 668 | 668 |
| 669 // Failed to sort addresses according to RFC3484. | 669 // Failed to sort addresses according to RFC3484. |
| 670 NET_ERROR(DNS_SORT_ERROR, -806) | 670 NET_ERROR(DNS_SORT_ERROR, -806) |
| OLD | NEW |