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

Unified Diff: chrome/browser/importer/nss_decryptor_mac.h

Issue 160077: Linux: Fix NSSDecryptor to import Firefox passwords from the user database correctly. (Closed)
Patch Set: Add comments. Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/importer/nss_decryptor_linux.cc ('k') | chrome/browser/importer/nss_decryptor_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/nss_decryptor_mac.h
diff --git a/chrome/browser/importer/nss_decryptor_mac.h b/chrome/browser/importer/nss_decryptor_mac.h
index babf1d058b1a410570ead0d65d11ca4979cbc05d..b540fe9942fef65960bd12d716d7761e61c9a1f6 100644
--- a/chrome/browser/importer/nss_decryptor_mac.h
+++ b/chrome/browser/importer/nss_decryptor_mac.h
@@ -137,6 +137,9 @@ class NSSDecryptor {
std::vector<webkit_glue::PasswordForm>* forms);
private:
+ PK11SlotInfo* GetKeySlotForDB() const { return PK11_GetInternalKeySlot(); }
+ void FreeSlot(PK11SlotInfo* slot) const { PK11_FreeSlot(slot); }
+
// Methods in Firefox security components.
NSSInitFunc NSS_Init;
NSSShutdownFunc NSS_Shutdown;
« no previous file with comments | « chrome/browser/importer/nss_decryptor_linux.cc ('k') | chrome/browser/importer/nss_decryptor_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698