OLD | NEW |
---|---|
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 contains the list of network errors. | 5 // This file contains the list of network errors. |
6 | 6 |
7 // An asynchronous IO operation is not yet complete. This usually does not | 7 // An asynchronous IO operation is not yet complete. This usually does not |
8 // indicate a fatal error. Typically this error will be generated as a | 8 // indicate a fatal error. Typically this error will be generated as a |
9 // notification to wait for some external notification that the IO operation | 9 // notification to wait for some external notification that the IO operation |
10 // finally completed. | 10 // finally completed. |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
243 // The cache does not have the requested entry. | 243 // The cache does not have the requested entry. |
244 NET_ERROR(CACHE_MISS, -400) | 244 NET_ERROR(CACHE_MISS, -400) |
245 | 245 |
246 // Unable to read from the disk cache. | 246 // Unable to read from the disk cache. |
247 NET_ERROR(CACHE_READ_FAILURE, -401) | 247 NET_ERROR(CACHE_READ_FAILURE, -401) |
248 | 248 |
249 // The network transaction factory of the cache was not able to create a new | 249 // The network transaction factory of the cache was not able to create a new |
250 // transaction. | 250 // transaction. |
251 NET_ERROR(CACHE_CANNOT_CREATE_NETWORK_TRANSACTION, -402) | 251 NET_ERROR(CACHE_CANNOT_CREATE_NETWORK_TRANSACTION, -402) |
252 | 252 |
253 // The operation is not supported for this entry. | |
254 NET_ERROR(CACHE_OPERATION_NOT_SUPPORTED, -403) | |
wtc
2009/06/04 02:01:05
You were so fast :-) I was going to suggest that
| |
255 | |
253 // The server's response was insecure (e.g. there was a cert error). | 256 // The server's response was insecure (e.g. there was a cert error). |
254 NET_ERROR(INSECURE_RESPONSE, -501) | 257 NET_ERROR(INSECURE_RESPONSE, -501) |
OLD | NEW |