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

Side by Side Diff: chrome/utility/importer/nss_decryptor_win.cc

Issue 18501013: Move most importer code to chrome/utility/importer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: another gyp attempt Created 7 years, 5 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 | « chrome/utility/importer/nss_decryptor_win.h ('k') | chrome/utility/importer/safari_importer.h » ('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) 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
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 }
OLDNEW
« no previous file with comments | « chrome/utility/importer/nss_decryptor_win.h ('k') | chrome/utility/importer/safari_importer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698