OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/tab_contents/link_infobar_delegate.h" | 7 #include "chrome/browser/tab_contents/link_infobar_delegate.h" |
8 #include "chrome/browser/ui/gtk/gtk_util.h" | 8 #include "chrome/browser/ui/gtk/gtk_util.h" |
9 | 9 |
10 // LinkInfoBarDelegate --------------------------------------------------------- | 10 // LinkInfoBarDelegate --------------------------------------------------------- |
(...skipping 11 matching lines...) Expand all Loading... |
22 string16 display_text = delegate->GetMessageTextWithOffset(&link_offset); | 22 string16 display_text = delegate->GetMessageTextWithOffset(&link_offset); |
23 string16 link_text = delegate->GetLinkText(); | 23 string16 link_text = delegate->GetLinkText(); |
24 AddLabelWithInlineLink(display_text, link_text, link_offset, | 24 AddLabelWithInlineLink(display_text, link_text, link_offset, |
25 G_CALLBACK(OnLinkClickedThunk)); | 25 G_CALLBACK(OnLinkClickedThunk)); |
26 } | 26 } |
27 | 27 |
28 LinkInfoBarGtk::~LinkInfoBarGtk() { | 28 LinkInfoBarGtk::~LinkInfoBarGtk() { |
29 } | 29 } |
30 | 30 |
31 void LinkInfoBarGtk::OnLinkClicked(GtkWidget* button) { | 31 void LinkInfoBarGtk::OnLinkClicked(GtkWidget* button) { |
| 32 if (!owned()) |
| 33 return; // We're closing; don't call anything, it might access the owner. |
32 if (GetDelegate()->LinkClicked( | 34 if (GetDelegate()->LinkClicked( |
33 gtk_util::DispositionForCurrentButtonPressEvent())) | 35 gtk_util::DispositionForCurrentButtonPressEvent())) |
34 RemoveSelf(); | 36 RemoveSelf(); |
35 } | 37 } |
36 | 38 |
37 LinkInfoBarDelegate* LinkInfoBarGtk::GetDelegate() { | 39 LinkInfoBarDelegate* LinkInfoBarGtk::GetDelegate() { |
38 return delegate()->AsLinkInfoBarDelegate(); | 40 return delegate()->AsLinkInfoBarDelegate(); |
39 } | 41 } |
OLD | NEW |