| 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. | 6 // inside a macro to generate enum. |
| 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 NET_ERROR(DNS_SERVER_FAILED, -802) | 651 NET_ERROR(DNS_SERVER_FAILED, -802) |
| 652 | 652 |
| 653 // DNS transaction timed out. | 653 // DNS transaction timed out. |
| 654 NET_ERROR(DNS_TIMED_OUT, -803) | 654 NET_ERROR(DNS_TIMED_OUT, -803) |
| 655 | 655 |
| 656 // The entry was not found in cache, for cache-only lookups. | 656 // The entry was not found in cache, for cache-only lookups. |
| 657 NET_ERROR(DNS_CACHE_MISS, -804) | 657 NET_ERROR(DNS_CACHE_MISS, -804) |
| 658 | 658 |
| 659 // Suffix search list rules prevent resolution of the given host name. | 659 // Suffix search list rules prevent resolution of the given host name. |
| 660 NET_ERROR(DNS_SEARCH_EMPTY, -805) | 660 NET_ERROR(DNS_SEARCH_EMPTY, -805) |
| 661 |
| 662 // Failed to sort addresses according to RFC3484. |
| 663 NET_ERROR(DNS_SORT_ERROR, -806) |
| OLD | NEW |