| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 // kind of query. | 620 // kind of query. |
| 621 // 5 - Refused - The name server refuses to perform the specified | 621 // 5 - Refused - The name server refuses to perform the specified |
| 622 // operation for policy reasons. | 622 // operation for policy reasons. |
| 623 NET_ERROR(DNS_SERVER_FAILED, -802) | 623 NET_ERROR(DNS_SERVER_FAILED, -802) |
| 624 | 624 |
| 625 // DNS transaction timed out. | 625 // DNS transaction timed out. |
| 626 NET_ERROR(DNS_TIMED_OUT, -803) | 626 NET_ERROR(DNS_TIMED_OUT, -803) |
| 627 | 627 |
| 628 // The entry was not found in cache, for cache-only lookups. | 628 // The entry was not found in cache, for cache-only lookups. |
| 629 NET_ERROR(DNS_CACHE_MISS, -804) | 629 NET_ERROR(DNS_CACHE_MISS, -804) |
| 630 |
| 631 // FIXME: Take the next number. |
| 632 NET_ERROR(PIPELINE_EVICTION, -900) |
| OLD | NEW |