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

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

Issue 1076063002: Remove certificates from Channel ID (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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
OLDNEW
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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 747
748 // PKCS #12 import failed due to invalid/corrupt file. 748 // PKCS #12 import failed due to invalid/corrupt file.
749 NET_ERROR(PKCS12_IMPORT_INVALID_FILE, -708) 749 NET_ERROR(PKCS12_IMPORT_INVALID_FILE, -708)
750 750
751 // PKCS #12 import failed due to unsupported features. 751 // PKCS #12 import failed due to unsupported features.
752 NET_ERROR(PKCS12_IMPORT_UNSUPPORTED, -709) 752 NET_ERROR(PKCS12_IMPORT_UNSUPPORTED, -709)
753 753
754 // Key generation failed. 754 // Key generation failed.
755 NET_ERROR(KEY_GENERATION_FAILED, -710) 755 NET_ERROR(KEY_GENERATION_FAILED, -710)
756 756
757 // Server-bound certificate generation failed. 757 // Error -711 was removed (ORIGIN_BOUND_CERT_GENERATION_FAILED)
758 NET_ERROR(ORIGIN_BOUND_CERT_GENERATION_FAILED, -711)
759 758
760 // Failure to export private key. 759 // Failure to export private key.
761 NET_ERROR(PRIVATE_KEY_EXPORT_FAILED, -712) 760 NET_ERROR(PRIVATE_KEY_EXPORT_FAILED, -712)
762 761
763 // Self-signed certificate generation failed. 762 // Self-signed certificate generation failed.
764 NET_ERROR(SELF_SIGNED_CERT_GENERATION_FAILED, -713) 763 NET_ERROR(SELF_SIGNED_CERT_GENERATION_FAILED, -713)
765 764
766 // The certificate database changed in some way. 765 // The certificate database changed in some way.
767 NET_ERROR(CERT_DATABASE_CHANGED, -714) 766 NET_ERROR(CERT_DATABASE_CHANGED, -714)
768 767
(...skipping 23 matching lines...) Expand all
792 NET_ERROR(DNS_TIMED_OUT, -803) 791 NET_ERROR(DNS_TIMED_OUT, -803)
793 792
794 // The entry was not found in cache, for cache-only lookups. 793 // The entry was not found in cache, for cache-only lookups.
795 NET_ERROR(DNS_CACHE_MISS, -804) 794 NET_ERROR(DNS_CACHE_MISS, -804)
796 795
797 // Suffix search list rules prevent resolution of the given host name. 796 // Suffix search list rules prevent resolution of the given host name.
798 NET_ERROR(DNS_SEARCH_EMPTY, -805) 797 NET_ERROR(DNS_SEARCH_EMPTY, -805)
799 798
800 // Failed to sort addresses according to RFC3484. 799 // Failed to sort addresses according to RFC3484.
801 NET_ERROR(DNS_SORT_ERROR, -806) 800 NET_ERROR(DNS_SORT_ERROR, -806)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698