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

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

Issue 1591006: Adds support for the <keygen> element to Windows, matching... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Fix keygen_handler_nss.cc compilation errors. Fix more nits. Created 10 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « net/base/keygen_handler_win.cc ('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) 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
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)
OLDNEW
« no previous file with comments | « net/base/keygen_handler_win.cc ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698