diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-26 15:38:56 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-26 15:38:56 +0000 |
commit | 44763638ef986a22c76c5842461b050e79c26953 (patch) | |
tree | 17a84055fd2aadfee4eaed4f2e3dd2573776123e /chrome/browser/page_info_model.h | |
parent | 8a26854e8842101aba84364ff2cb35ec80a51e73 (diff) | |
download | chromium_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/page_info_model.h')
-rw-r--r-- | chrome/browser/page_info_model.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/chrome/browser/page_info_model.h b/chrome/browser/page_info_model.h index 3e6b962..c89aaca 100644 --- a/chrome/browser/page_info_model.h +++ b/chrome/browser/page_info_model.h @@ -52,12 +52,10 @@ class PageInfoModel { struct SectionInfo { SectionInfo(SectionStateIcon icon_id, - const string16& title, const string16& headline, const string16& description, SectionInfoType type) : icon_id(icon_id), - title(title), headline(headline), description(description), type(type) { @@ -66,9 +64,6 @@ class PageInfoModel { // The overall state of the connection (error, warning, ok). SectionStateIcon icon_id; - // The title of the section. - string16 title; - // A single line describing the section, optional. string16 headline; |