 Chromium Code Reviews
 Chromium Code Reviews Issue 843005:
  Adds support for the <keygen> element to Windows, matching support present on...  (Closed) 
  Base URL: http://src.chromium.org/svn/trunk/src/
    
  
    Issue 843005:
  Adds support for the <keygen> element to Windows, matching support present on...  (Closed) 
  Base URL: http://src.chromium.org/svn/trunk/src/| Index: net/base/keygen_handler_mac.cc | 
| =================================================================== | 
| --- net/base/keygen_handler_mac.cc (revision 43235) | 
| +++ net/base/keygen_handler_mac.cc (working copy) | 
| @@ -88,6 +88,11 @@ | 
| CSSM_DATA* signature); | 
| +bool KeygenHandler::KeyLocation::Equals( | 
| + const KeygenHandler::KeyLocation& location) const { | 
| + return keychain_path == location.keychain_path; | 
| +} | 
| + | 
| std::string KeygenHandler::GenKeyAndSignChallenge() { | 
| std::string result; | 
| OSStatus err; |