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

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

Issue 11825005: Move alternate_nav_infobar_delegate.* from c/b/infobars/ to c/b/ui/omnibox. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update chrome_browser_ui.gypi as well Created 7 years, 11 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/alternate_nav_infobar_gtk.h" 5 #include "chrome/browser/ui/gtk/infobars/alternate_nav_infobar_gtk.h"
6 6
7 #include "chrome/browser/infobars/alternate_nav_infobar_delegate.h"
8 #include "chrome/browser/ui/gtk/event_utils.h" 7 #include "chrome/browser/ui/gtk/event_utils.h"
8 #include "chrome/browser/ui/omnibox/alternate_nav_infobar_delegate.h"
9 9
10 // AlternateNavInfoBarDelegate ------------------------------------------------- 10 // AlternateNavInfoBarDelegate -------------------------------------------------
11 11
12 InfoBar* AlternateNavInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { 12 InfoBar* AlternateNavInfoBarDelegate::CreateInfoBar(InfoBarService* owner) {
13 return new AlternateNavInfoBarGtk(owner, this); 13 return new AlternateNavInfoBarGtk(owner, this);
14 } 14 }
15 15
16 // AlternateNavInfoBarGtk ------------------------------------------------------ 16 // AlternateNavInfoBarGtk ------------------------------------------------------
17 17
18 AlternateNavInfoBarGtk::AlternateNavInfoBarGtk( 18 AlternateNavInfoBarGtk::AlternateNavInfoBarGtk(
(...skipping 12 matching lines...) Expand all
31 31
32 void AlternateNavInfoBarGtk::OnLinkClicked(GtkWidget* button) { 32 void AlternateNavInfoBarGtk::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 AlternateNavInfoBarDelegate* AlternateNavInfoBarGtk::GetDelegate() { 38 AlternateNavInfoBarDelegate* AlternateNavInfoBarGtk::GetDelegate() {
39 return delegate()->AsAlternateNavInfoBarDelegate(); 39 return delegate()->AsAlternateNavInfoBarDelegate();
40 } 40 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm ('k') | chrome/browser/ui/gtk/location_bar_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698