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

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

Issue 10843071: Create chrome/browser/api directory. Move infobar delegates used by Autofill to the directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments. Created 8 years, 4 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) 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/tab_contents/link_infobar_delegate.h" 7 #include "chrome/browser/api/infobars/link_infobar_delegate.h"
8 #include "chrome/browser/ui/gtk/event_utils.h" 8 #include "chrome/browser/ui/gtk/event_utils.h"
9 9
10 // LinkInfoBarDelegate --------------------------------------------------------- 10 // LinkInfoBarDelegate ---------------------------------------------------------
11 11
12 InfoBar* LinkInfoBarDelegate::CreateInfoBar(InfoBarTabHelper* owner) { 12 InfoBar* LinkInfoBarDelegate::CreateInfoBar(InfoBarTabHelper* owner) {
13 return new LinkInfoBarGtk(owner, this); 13 return new LinkInfoBarGtk(owner, this);
14 } 14 }
15 15
16 // LinkInfoBarGtk -------------------------------------------------------------- 16 // LinkInfoBarGtk --------------------------------------------------------------
17 17
(...skipping 12 matching lines...) Expand all
30 30
31 void LinkInfoBarGtk::OnLinkClicked(GtkWidget* button) { 31 void LinkInfoBarGtk::OnLinkClicked(GtkWidget* button) {
32 if (GetDelegate()->LinkClicked( 32 if (GetDelegate()->LinkClicked(
33 event_utils::DispositionForCurrentButtonPressEvent())) 33 event_utils::DispositionForCurrentButtonPressEvent()))
34 RemoveSelf(); 34 RemoveSelf();
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_gtk.h ('k') | chrome/browser/ui/hung_plugin_tab_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698