summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authormattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-12 22:44:11 +0000
committermattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-12 22:44:11 +0000
commit8be790998b6313e13a88d88797f70d7d997f645a (patch)
tree73437cf6e842b00c627eabfbde5323f383f39b09 /chrome
parent166e304a282a07b8262f63fe53eee8da76a45a48 (diff)
downloadchromium_src-8be790998b6313e13a88d88797f70d7d997f645a.zip
chromium_src-8be790998b6313e13a88d88797f70d7d997f645a.tar.gz
chromium_src-8be790998b6313e13a88d88797f70d7d997f645a.tar.bz2
DOMUI Cert Manager: remove placeholder icon on certificate rows.
BUG=19991 TEST=manual Review URL: http://codereview.chromium.org/3661003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62346 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/dom_ui/options/certificate_manager_handler.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/browser/dom_ui/options/certificate_manager_handler.cc b/chrome/browser/dom_ui/options/certificate_manager_handler.cc
index 8b286935..8287054 100644
--- a/chrome/browser/dom_ui/options/certificate_manager_handler.cc
+++ b/chrome/browser/dom_ui/options/certificate_manager_handler.cc
@@ -682,9 +682,7 @@ void CertificateManagerHandler::PopulateTree(const std::string& tab_name,
cert_dict->SetString(kNameId, certificate_manager_model_->GetColumnText(
*cert, CertificateManagerModel::COL_SUBJECT_NAME));
// TODO(mattm): Other columns.
- // TODO(mattm): Get a real icon (or figure out how to make the domui
- // tree not use icons at all).
- cert_dict->SetString(kIconId, "chrome://theme/IDR_COOKIE_ICON");
+ cert_dict->SetString(kIconId, "none");
subnodes->Append(cert_dict);
}
std::sort(subnodes->begin(), subnodes->end(), comparator);