| 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 values. | 6 // inside a macro to generate enum values. |
| 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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 | 620 |
| 621 // Proxy Auth Requested without a valid Client Socket Handle. | 621 // Proxy Auth Requested without a valid Client Socket Handle. |
| 622 NET_ERROR(PROXY_AUTH_REQUESTED_WITH_NO_CONNECTION, -364) | 622 NET_ERROR(PROXY_AUTH_REQUESTED_WITH_NO_CONNECTION, -364) |
| 623 | 623 |
| 624 // HTTP_1_1_REQUIRED error code received on HTTP/2 session. | 624 // HTTP_1_1_REQUIRED error code received on HTTP/2 session. |
| 625 NET_ERROR(HTTP_1_1_REQUIRED, -365) | 625 NET_ERROR(HTTP_1_1_REQUIRED, -365) |
| 626 | 626 |
| 627 // HTTP_1_1_REQUIRED error code received on HTTP/2 session to proxy. | 627 // HTTP_1_1_REQUIRED error code received on HTTP/2 session to proxy. |
| 628 NET_ERROR(PROXY_HTTP_1_1_REQUIRED, -366) | 628 NET_ERROR(PROXY_HTTP_1_1_REQUIRED, -366) |
| 629 | 629 |
| 630 // The PAC script terminated fatally and must be reloaded. |
| 631 NET_ERROR(PAC_SCRIPT_TERMINATED, -367) |
| 632 |
| 630 // The cache does not have the requested entry. | 633 // The cache does not have the requested entry. |
| 631 NET_ERROR(CACHE_MISS, -400) | 634 NET_ERROR(CACHE_MISS, -400) |
| 632 | 635 |
| 633 // Unable to read from the disk cache. | 636 // Unable to read from the disk cache. |
| 634 NET_ERROR(CACHE_READ_FAILURE, -401) | 637 NET_ERROR(CACHE_READ_FAILURE, -401) |
| 635 | 638 |
| 636 // Unable to write to the disk cache. | 639 // Unable to write to the disk cache. |
| 637 NET_ERROR(CACHE_WRITE_FAILURE, -402) | 640 NET_ERROR(CACHE_WRITE_FAILURE, -402) |
| 638 | 641 |
| 639 // The operation is not supported for this entry. | 642 // The operation is not supported for this entry. |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 NET_ERROR(DNS_TIMED_OUT, -803) | 781 NET_ERROR(DNS_TIMED_OUT, -803) |
| 779 | 782 |
| 780 // The entry was not found in cache, for cache-only lookups. | 783 // The entry was not found in cache, for cache-only lookups. |
| 781 NET_ERROR(DNS_CACHE_MISS, -804) | 784 NET_ERROR(DNS_CACHE_MISS, -804) |
| 782 | 785 |
| 783 // Suffix search list rules prevent resolution of the given host name. | 786 // Suffix search list rules prevent resolution of the given host name. |
| 784 NET_ERROR(DNS_SEARCH_EMPTY, -805) | 787 NET_ERROR(DNS_SEARCH_EMPTY, -805) |
| 785 | 788 |
| 786 // Failed to sort addresses according to RFC3484. | 789 // Failed to sort addresses according to RFC3484. |
| 787 NET_ERROR(DNS_SORT_ERROR, -806) | 790 NET_ERROR(DNS_SORT_ERROR, -806) |
| OLD | NEW |