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

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

Issue 917863005: Implementation of ProxyResolver that uses a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sam-v8-pac-utility-proxy
Patch Set: Fix build. Created 5 years, 9 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 | « net/BUILD.gn ('k') | net/net.gyp » ('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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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)
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698