Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(393)

Side by Side Diff: chrome/browser/ui/gtk/infobars/link_infobar_gtk.cc

Issue 6989001: Misc. infobar stuff: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 ---------------------------------------------------------
11 11
12 InfoBar* LinkInfoBarDelegate::CreateInfoBar() { 12 InfoBar* LinkInfoBarDelegate::CreateInfoBar(TabContentsWrapper* owner) {
13 return new LinkInfoBarGtk(this); 13 return new LinkInfoBarGtk(this);
14 } 14 }
15 15
16 // LinkInfoBarGtk -------------------------------------------------------------- 16 // LinkInfoBarGtk --------------------------------------------------------------
17 17
18 LinkInfoBarGtk::LinkInfoBarGtk(LinkInfoBarDelegate* delegate) 18 LinkInfoBarGtk::LinkInfoBarGtk(LinkInfoBarDelegate* delegate)
19 : InfoBar(delegate) { 19 : InfoBar(delegate) {
20 size_t link_offset; 20 size_t link_offset;
21 string16 display_text = delegate->GetMessageTextWithOffset(&link_offset); 21 string16 display_text = delegate->GetMessageTextWithOffset(&link_offset);
22 string16 link_text = delegate->GetLinkText(); 22 string16 link_text = delegate->GetLinkText();
23 AddLabelWithInlineLink(display_text, link_text, link_offset, 23 AddLabelWithInlineLink(display_text, link_text, link_offset,
24 G_CALLBACK(OnLinkClickedThunk)); 24 G_CALLBACK(OnLinkClickedThunk));
25 } 25 }
26 26
27 LinkInfoBarGtk::~LinkInfoBarGtk() { 27 LinkInfoBarGtk::~LinkInfoBarGtk() {
28 } 28 }
29 29
30 void LinkInfoBarGtk::OnLinkClicked(GtkWidget* button) { 30 void LinkInfoBarGtk::OnLinkClicked(GtkWidget* button) {
31 if (GetDelegate()->LinkClicked( 31 if (GetDelegate()->LinkClicked(
32 gtk_util::DispositionForCurrentButtonPressEvent())) { 32 gtk_util::DispositionForCurrentButtonPressEvent())) {
33 RemoveInfoBar(); 33 RemoveInfoBar();
34 } 34 }
35 } 35 }
36 36
37 LinkInfoBarDelegate* LinkInfoBarGtk::GetDelegate() { 37 LinkInfoBarDelegate* LinkInfoBarGtk::GetDelegate() {
38 return delegate_->AsLinkInfoBarDelegate(); 38 return delegate_->AsLinkInfoBarDelegate();
39 } 39 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/infobars/infobar_container_gtk.cc ('k') | chrome/browser/ui/gtk/infobars/translate_infobar_base_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698