| 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 #include "chrome/browser/importer/nss_decryptor_win.h" | 5 #include "chrome/utility/importer/nss_decryptor_win.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/strings/sys_string_conversions.h" | 8 #include "base/strings/sys_string_conversions.h" |
| 9 | 9 |
| 10 namespace { | 10 namespace { |
| 11 | 11 |
| 12 typedef BOOL (WINAPI* SetDllDirectoryFunc)(LPCTSTR lpPathName); | 12 typedef BOOL (WINAPI* SetDllDirectoryFunc)(LPCTSTR lpPathName); |
| 13 | 13 |
| 14 // A helper class whose destructor calls SetDllDirectory(NULL) to undo the | 14 // A helper class whose destructor calls SetDllDirectory(NULL) to undo the |
| 15 // effects of a previous SetDllDirectory call. | 15 // effects of a previous SetDllDirectory call. |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 PK11_GetInternalKeySlot = NULL; | 168 PK11_GetInternalKeySlot = NULL; |
| 169 PK11_FreeSlot = NULL; | 169 PK11_FreeSlot = NULL; |
| 170 PK11_Authenticate = NULL; | 170 PK11_Authenticate = NULL; |
| 171 PK11SDR_Decrypt = NULL; | 171 PK11SDR_Decrypt = NULL; |
| 172 SECITEM_FreeItem = NULL; | 172 SECITEM_FreeItem = NULL; |
| 173 PL_ArenaFinish = NULL; | 173 PL_ArenaFinish = NULL; |
| 174 PR_Cleanup = NULL; | 174 PR_Cleanup = NULL; |
| 175 nss3_dll_ = NULL; | 175 nss3_dll_ = NULL; |
| 176 softokn3_dll_ = NULL; | 176 softokn3_dll_ = NULL; |
| 177 } | 177 } |
| OLD | NEW |