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

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

Issue 1615943003: Remove unnecessary ERR_CHANNEL_ID_IMPORT_FAILED codepath. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | net/quic/crypto/channel_id_chromium.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 784
785 // Failure to export private key. 785 // Failure to export private key.
786 NET_ERROR(PRIVATE_KEY_EXPORT_FAILED, -712) 786 NET_ERROR(PRIVATE_KEY_EXPORT_FAILED, -712)
787 787
788 // Self-signed certificate generation failed. 788 // Self-signed certificate generation failed.
789 NET_ERROR(SELF_SIGNED_CERT_GENERATION_FAILED, -713) 789 NET_ERROR(SELF_SIGNED_CERT_GENERATION_FAILED, -713)
790 790
791 // The certificate database changed in some way. 791 // The certificate database changed in some way.
792 NET_ERROR(CERT_DATABASE_CHANGED, -714) 792 NET_ERROR(CERT_DATABASE_CHANGED, -714)
793 793
794 // Failure to import Channel ID. 794 // Error -715 was removed (CHANNEL_ID_IMPORT_FAILED)
795 NET_ERROR(CHANNEL_ID_IMPORT_FAILED, -715)
796 795
797 // DNS error codes. 796 // DNS error codes.
798 797
799 // DNS resolver received a malformed response. 798 // DNS resolver received a malformed response.
800 NET_ERROR(DNS_MALFORMED_RESPONSE, -800) 799 NET_ERROR(DNS_MALFORMED_RESPONSE, -800)
801 800
802 // DNS server requires TCP 801 // DNS server requires TCP
803 NET_ERROR(DNS_SERVER_REQUIRES_TCP, -801) 802 NET_ERROR(DNS_SERVER_REQUIRES_TCP, -801)
804 803
805 // DNS server failed. This error is returned for all of the following 804 // DNS server failed. This error is returned for all of the following
(...skipping 11 matching lines...) Expand all
817 NET_ERROR(DNS_TIMED_OUT, -803) 816 NET_ERROR(DNS_TIMED_OUT, -803)
818 817
819 // The entry was not found in cache, for cache-only lookups. 818 // The entry was not found in cache, for cache-only lookups.
820 NET_ERROR(DNS_CACHE_MISS, -804) 819 NET_ERROR(DNS_CACHE_MISS, -804)
821 820
822 // Suffix search list rules prevent resolution of the given host name. 821 // Suffix search list rules prevent resolution of the given host name.
823 NET_ERROR(DNS_SEARCH_EMPTY, -805) 822 NET_ERROR(DNS_SEARCH_EMPTY, -805)
824 823
825 // Failed to sort addresses according to RFC3484. 824 // Failed to sort addresses according to RFC3484.
826 NET_ERROR(DNS_SORT_ERROR, -806) 825 NET_ERROR(DNS_SORT_ERROR, -806)
OLDNEW
« no previous file with comments | « no previous file | net/quic/crypto/channel_id_chromium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698