diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 09:00:00 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 09:00:00 +0000 |
commit | ba96f8aa35e2166332e13ac1cbb61ccf4e497594 (patch) | |
tree | 452b3efb0a29a0ad3d313c16dadfe0cc1836f042 /chrome/browser/gtk | |
parent | 6dde9d7f2a99851b0f84671832f072799dd3f8d5 (diff) | |
download | chromium_src-ba96f8aa35e2166332e13ac1cbb61ccf4e497594.zip chromium_src-ba96f8aa35e2166332e13ac1cbb61ccf4e497594.tar.gz chromium_src-ba96f8aa35e2166332e13ac1cbb61ccf4e497594.tar.bz2 |
Part 2 of the SSL InfoBubble. 2nd try, this time with test fixed.
- Added Certificate Information link.
- Changed iconography to be:
Identity : Green check mark vs. Red skull and bones
Connection: Green padlock vs. Orange exclamation point.
(This used to be Green checkmark and Orange Exclamation point for both sections.
- Removed the icon for the First visit section. Need to see if we want an icon for when you haven't visited the site before. Mocks show no icons when you have visited before.
BUG=52916
TEST=Open the SSL InfoBubble and notice the new iconography. Click the link and the Certificate dialog should show.
Review URL: http://codereview.chromium.org/3187019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57498 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk')
-rw-r--r-- | chrome/browser/gtk/page_info_window_gtk.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/gtk/page_info_window_gtk.cc b/chrome/browser/gtk/page_info_window_gtk.cc index 0274b38..87671ae 100644 --- a/chrome/browser/gtk/page_info_window_gtk.cc +++ b/chrome/browser/gtk/page_info_window_gtk.cc @@ -157,8 +157,8 @@ GtkWidget* PageInfoWindowGtk::CreateSection( gtk_misc_set_alignment(GTK_MISC(image), 0, 0); GtkWidget* text_box = gtk_vbox_new(FALSE, gtk_util::kControlSpacing); - if (!section.head_line.empty()) { - label = gtk_label_new(UTF16ToUTF8(section.head_line).c_str()); + if (!section.headline.empty()) { + label = gtk_label_new(UTF16ToUTF8(section.headline).c_str()); gtk_misc_set_alignment(GTK_MISC(label), 0, 0); gtk_box_pack_start(GTK_BOX(text_box), label, FALSE, FALSE, 0); } |