| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // | 7 // |
| 8 // Ranges: | 8 // Ranges: |
| 9 // 0- 99 System related errors | 9 // 0- 99 System related errors |
| 10 // 100-199 Connection related errors | 10 // 100-199 Connection related errors |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 NET_ERROR(CACHE_RACE, -406) | 353 NET_ERROR(CACHE_RACE, -406) |
| 354 | 354 |
| 355 // The server's response was insecure (e.g. there was a cert error). | 355 // The server's response was insecure (e.g. there was a cert error). |
| 356 NET_ERROR(INSECURE_RESPONSE, -501) | 356 NET_ERROR(INSECURE_RESPONSE, -501) |
| 357 | 357 |
| 358 // The server responded to a <keygen> with a generated client cert that we | 358 // The server responded to a <keygen> with a generated client cert that we |
| 359 // don't have the matching private key for. | 359 // don't have the matching private key for. |
| 360 NET_ERROR(NO_PRIVATE_KEY_FOR_CERT, -502) | 360 NET_ERROR(NO_PRIVATE_KEY_FOR_CERT, -502) |
| 361 | 361 |
| 362 // An error adding to the OS certificate database (e.g. OS X Keychain). | 362 // An error adding to the OS certificate database (e.g. OS X Keychain). |
| 363 NET_ERROR(ERR_ADD_USER_CERT_FAILED, -503) | 363 NET_ERROR(ADD_USER_CERT_FAILED, -503) |
| 364 | 364 |
| 365 // | 365 // |
| 366 // The FTP PASV command failed. | 366 // The FTP PASV command failed. |
| 367 NET_ERROR(FTP_PASV_COMMAND_FAILED, -600) | 367 NET_ERROR(FTP_PASV_COMMAND_FAILED, -600) |
| OLD | NEW |