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

Unified Diff: chrome/browser/certificate_manager_model.cc

Issue 8566056: This applies GUIDs to certificate and key nicknames when (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix memory leak Created 9 years 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
Index: chrome/browser/certificate_manager_model.cc
diff --git a/chrome/browser/certificate_manager_model.cc b/chrome/browser/certificate_manager_model.cc
index e722ad8b0e78fc120320f611e48321134cde5a23..6989f723dea466d84a4757c467d724845258854a 100644
--- a/chrome/browser/certificate_manager_model.cc
+++ b/chrome/browser/certificate_manager_model.cc
@@ -115,7 +115,7 @@ int CertificateManagerModel::ImportFromPKCS12(net::CryptoModule* module,
const string16& password,
bool is_extractable) {
int result = cert_db_.ImportFromPKCS12(module, data, password,
- is_extractable);
+ is_extractable, NULL);
if (result == net::OK)
Refresh();
return result;
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/network_library.cc » ('j') | chrome/browser/chromeos/cros/onc_network_parser.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698