| Index: chrome/browser/certificate_manager_model.cc
|
| diff --git a/chrome/browser/certificate_manager_model.cc b/chrome/browser/certificate_manager_model.cc
|
| index 619260ecb4df581a417df86b408d3d307610dbbc..067a3021e76a102ce797dc065ef7dd0068264396 100644
|
| --- a/chrome/browser/certificate_manager_model.cc
|
| +++ b/chrome/browser/certificate_manager_model.cc
|
| @@ -74,9 +74,10 @@ string16 CertificateManagerModel::GetColumnText(
|
| return rv;
|
| }
|
|
|
| -int CertificateManagerModel::ImportFromPKCS12(const std::string& data,
|
| +int CertificateManagerModel::ImportFromPKCS12(net::CryptoModule* module,
|
| + const std::string& data,
|
| const string16& password) {
|
| - int result = cert_db_.ImportFromPKCS12(data, password);
|
| + int result = cert_db_.ImportFromPKCS12(module, data, password);
|
| if (result == net::OK)
|
| Refresh();
|
| return result;
|
|
|