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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 | 742 |
743 // PKCS #12 import failed due to invalid/corrupt file. | 743 // PKCS #12 import failed due to invalid/corrupt file. |
744 NET_ERROR(PKCS12_IMPORT_INVALID_FILE, -708) | 744 NET_ERROR(PKCS12_IMPORT_INVALID_FILE, -708) |
745 | 745 |
746 // PKCS #12 import failed due to unsupported features. | 746 // PKCS #12 import failed due to unsupported features. |
747 NET_ERROR(PKCS12_IMPORT_UNSUPPORTED, -709) | 747 NET_ERROR(PKCS12_IMPORT_UNSUPPORTED, -709) |
748 | 748 |
749 // Key generation failed. | 749 // Key generation failed. |
750 NET_ERROR(KEY_GENERATION_FAILED, -710) | 750 NET_ERROR(KEY_GENERATION_FAILED, -710) |
751 | 751 |
752 // Server-bound certificate generation failed. | 752 // Error -711 was removed (ORIGIN_BOUND_CERT_GENERATION_FAILED) |
753 NET_ERROR(ORIGIN_BOUND_CERT_GENERATION_FAILED, -711) | |
754 | 753 |
755 // Failure to export private key. | 754 // Failure to export private key. |
756 NET_ERROR(PRIVATE_KEY_EXPORT_FAILED, -712) | 755 NET_ERROR(PRIVATE_KEY_EXPORT_FAILED, -712) |
757 | 756 |
758 // Self-signed certificate generation failed. | 757 // Self-signed certificate generation failed. |
759 NET_ERROR(SELF_SIGNED_CERT_GENERATION_FAILED, -713) | 758 NET_ERROR(SELF_SIGNED_CERT_GENERATION_FAILED, -713) |
760 | 759 |
761 // The certificate database changed in some way. | 760 // The certificate database changed in some way. |
762 NET_ERROR(CERT_DATABASE_CHANGED, -714) | 761 NET_ERROR(CERT_DATABASE_CHANGED, -714) |
763 | 762 |
(...skipping 23 matching lines...) Expand all Loading... |
787 NET_ERROR(DNS_TIMED_OUT, -803) | 786 NET_ERROR(DNS_TIMED_OUT, -803) |
788 | 787 |
789 // The entry was not found in cache, for cache-only lookups. | 788 // The entry was not found in cache, for cache-only lookups. |
790 NET_ERROR(DNS_CACHE_MISS, -804) | 789 NET_ERROR(DNS_CACHE_MISS, -804) |
791 | 790 |
792 // Suffix search list rules prevent resolution of the given host name. | 791 // Suffix search list rules prevent resolution of the given host name. |
793 NET_ERROR(DNS_SEARCH_EMPTY, -805) | 792 NET_ERROR(DNS_SEARCH_EMPTY, -805) |
794 | 793 |
795 // Failed to sort addresses according to RFC3484. | 794 // Failed to sort addresses according to RFC3484. |
796 NET_ERROR(DNS_SORT_ERROR, -806) | 795 NET_ERROR(DNS_SORT_ERROR, -806) |
OLD | NEW |