summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-26 15:38:56 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-26 15:38:56 +0000
commit44763638ef986a22c76c5842461b050e79c26953 (patch)
tree17a84055fd2aadfee4eaed4f2e3dd2573776123e /chrome/browser/views
parent8a26854e8842101aba84364ff2cb35ec80a51e73 (diff)
downloadchromium_src-44763638ef986a22c76c5842461b050e79c26953.zip
chromium_src-44763638ef986a22c76c5842461b050e79c26953.tar.gz
chromium_src-44763638ef986a22c76c5842461b050e79c26953.tar.bz2
Remove the title field from the SectionInfo struct. It is unused.
BUG=59030 TEST=None Review URL: http://codereview.chromium.org/3850003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63897 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views')
-rw-r--r--chrome/browser/views/page_info_bubble_view.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/chrome/browser/views/page_info_bubble_view.cc b/chrome/browser/views/page_info_bubble_view.cc
index 0aa1d71..90fa667 100644
--- a/chrome/browser/views/page_info_bubble_view.cc
+++ b/chrome/browser/views/page_info_bubble_view.cc
@@ -140,8 +140,6 @@ void PageInfoBubbleView::LayoutSections() {
for (int i = 0; i < count; ++i) {
PageInfoModel::SectionInfo info = model_.GetSectionInfo(i);
layout->StartRow(0, 0);
- // TODO(finnur): Remove title from the info struct, since it is
- // not used anymore.
const SkBitmap* icon = model_.GetIconImage(info.icon_id);
layout->AddView(new Section(this, info, icon, cert_id_ > 0));