| Index: chrome/browser/ui/webui/options2/certificate_manager_handler2.cc
|
| diff --git a/chrome/browser/ui/webui/options2/certificate_manager_handler2.cc b/chrome/browser/ui/webui/options2/certificate_manager_handler2.cc
|
| index e288814bd70a538ad8e119d957ad488675170c04..90cd769c51e248f2828597351a7d4a27fac8f1a7 100644
|
| --- a/chrome/browser/ui/webui/options2/certificate_manager_handler2.cc
|
| +++ b/chrome/browser/ui/webui/options2/certificate_manager_handler2.cc
|
| @@ -818,6 +818,7 @@ void CertificateManagerHandler::ImportServerFileRead(int read_errno,
|
| net::CertDatabase::ImportCertFailureList not_imported;
|
| bool result = certificate_manager_model_->ImportServerCert(
|
| selected_cert_list_,
|
| + net::CertDatabase::UNTRUSTED, // TODO(mattm): Add UI for trust.
|
| ¬_imported);
|
| if (!result) {
|
| ShowError(
|
| @@ -896,6 +897,7 @@ void CertificateManagerHandler::ImportCATrustSelected(const ListValue* args) {
|
| return;
|
| }
|
|
|
| + // TODO(mattm): add UI for setting explicit distrust, too.
|
| net::CertDatabase::ImportCertFailureList not_imported;
|
| bool result = certificate_manager_model_->ImportCACerts(
|
| selected_cert_list_,
|
|
|