OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/gtk/infobars/link_infobar_gtk.h" | 5 #include "chrome/browser/ui/gtk/infobars/link_infobar_gtk.h" |
6 | 6 |
7 #include "chrome/browser/api/infobars/link_infobar_delegate.h" | 7 #include "chrome/browser/api/infobars/link_infobar_delegate.h" |
8 #include "chrome/browser/infobars/infobar_tab_helper.h" | 8 #include "chrome/browser/infobars/infobar_tab_helper.h" |
9 #include "chrome/browser/ui/gtk/event_utils.h" | 9 #include "chrome/browser/ui/gtk/event_utils.h" |
10 | 10 |
11 // LinkInfoBarDelegate --------------------------------------------------------- | 11 // LinkInfoBarDelegate --------------------------------------------------------- |
12 | 12 |
13 InfoBar* LinkInfoBarDelegate::CreateInfoBar(InfoBarTabService* owner) { | 13 InfoBar* LinkInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { |
14 return new LinkInfoBarGtk(static_cast<InfoBarTabHelper*>(owner), this); | 14 return new LinkInfoBarGtk(static_cast<InfoBarTabHelper*>(owner), this); |
15 } | 15 } |
16 | 16 |
17 // LinkInfoBarGtk -------------------------------------------------------------- | 17 // LinkInfoBarGtk -------------------------------------------------------------- |
18 | 18 |
19 LinkInfoBarGtk::LinkInfoBarGtk(InfoBarTabHelper* owner, | 19 LinkInfoBarGtk::LinkInfoBarGtk(InfoBarTabHelper* owner, |
20 LinkInfoBarDelegate* delegate) | 20 LinkInfoBarDelegate* delegate) |
21 : InfoBarGtk(owner, delegate) { | 21 : InfoBarGtk(owner, delegate) { |
22 size_t link_offset; | 22 size_t link_offset; |
23 string16 display_text = delegate->GetMessageTextWithOffset(&link_offset); | 23 string16 display_text = delegate->GetMessageTextWithOffset(&link_offset); |
24 string16 link_text = delegate->GetLinkText(); | 24 string16 link_text = delegate->GetLinkText(); |
25 AddLabelWithInlineLink(display_text, link_text, link_offset, | 25 AddLabelWithInlineLink(display_text, link_text, link_offset, |
26 G_CALLBACK(OnLinkClickedThunk)); | 26 G_CALLBACK(OnLinkClickedThunk)); |
27 } | 27 } |
28 | 28 |
29 LinkInfoBarGtk::~LinkInfoBarGtk() { | 29 LinkInfoBarGtk::~LinkInfoBarGtk() { |
30 } | 30 } |
31 | 31 |
32 void LinkInfoBarGtk::OnLinkClicked(GtkWidget* button) { | 32 void LinkInfoBarGtk::OnLinkClicked(GtkWidget* button) { |
33 if (GetDelegate()->LinkClicked( | 33 if (GetDelegate()->LinkClicked( |
34 event_utils::DispositionForCurrentButtonPressEvent())) | 34 event_utils::DispositionForCurrentButtonPressEvent())) |
35 RemoveSelf(); | 35 RemoveSelf(); |
36 } | 36 } |
37 | 37 |
38 LinkInfoBarDelegate* LinkInfoBarGtk::GetDelegate() { | 38 LinkInfoBarDelegate* LinkInfoBarGtk::GetDelegate() { |
39 return delegate()->AsLinkInfoBarDelegate(); | 39 return delegate()->AsLinkInfoBarDelegate(); |
40 } | 40 } |
OLD | NEW |