| 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 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 | 751 |
| 752 // PKCS #12 import failed due to invalid/corrupt file. | 752 // PKCS #12 import failed due to invalid/corrupt file. |
| 753 NET_ERROR(PKCS12_IMPORT_INVALID_FILE, -708) | 753 NET_ERROR(PKCS12_IMPORT_INVALID_FILE, -708) |
| 754 | 754 |
| 755 // PKCS #12 import failed due to unsupported features. | 755 // PKCS #12 import failed due to unsupported features. |
| 756 NET_ERROR(PKCS12_IMPORT_UNSUPPORTED, -709) | 756 NET_ERROR(PKCS12_IMPORT_UNSUPPORTED, -709) |
| 757 | 757 |
| 758 // Key generation failed. | 758 // Key generation failed. |
| 759 NET_ERROR(KEY_GENERATION_FAILED, -710) | 759 NET_ERROR(KEY_GENERATION_FAILED, -710) |
| 760 | 760 |
| 761 // Server-bound certificate generation failed. | 761 // Error -711 was removed (ORIGIN_BOUND_CERT_GENERATION_FAILED) |
| 762 NET_ERROR(ORIGIN_BOUND_CERT_GENERATION_FAILED, -711) | |
| 763 | 762 |
| 764 // Failure to export private key. | 763 // Failure to export private key. |
| 765 NET_ERROR(PRIVATE_KEY_EXPORT_FAILED, -712) | 764 NET_ERROR(PRIVATE_KEY_EXPORT_FAILED, -712) |
| 766 | 765 |
| 767 // Self-signed certificate generation failed. | 766 // Self-signed certificate generation failed. |
| 768 NET_ERROR(SELF_SIGNED_CERT_GENERATION_FAILED, -713) | 767 NET_ERROR(SELF_SIGNED_CERT_GENERATION_FAILED, -713) |
| 769 | 768 |
| 770 // The certificate database changed in some way. | 769 // The certificate database changed in some way. |
| 771 NET_ERROR(CERT_DATABASE_CHANGED, -714) | 770 NET_ERROR(CERT_DATABASE_CHANGED, -714) |
| 772 | 771 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 796 NET_ERROR(DNS_TIMED_OUT, -803) | 795 NET_ERROR(DNS_TIMED_OUT, -803) |
| 797 | 796 |
| 798 // The entry was not found in cache, for cache-only lookups. | 797 // The entry was not found in cache, for cache-only lookups. |
| 799 NET_ERROR(DNS_CACHE_MISS, -804) | 798 NET_ERROR(DNS_CACHE_MISS, -804) |
| 800 | 799 |
| 801 // Suffix search list rules prevent resolution of the given host name. | 800 // Suffix search list rules prevent resolution of the given host name. |
| 802 NET_ERROR(DNS_SEARCH_EMPTY, -805) | 801 NET_ERROR(DNS_SEARCH_EMPTY, -805) |
| 803 | 802 |
| 804 // Failed to sort addresses according to RFC3484. | 803 // Failed to sort addresses according to RFC3484. |
| 805 NET_ERROR(DNS_SORT_ERROR, -806) | 804 NET_ERROR(DNS_SORT_ERROR, -806) |
| OLD | NEW |