| 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 #ifndef CHROME_BROWSER_UI_VIEWS_INFOBARS_LINK_INFOBAR_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_INFOBARS_ALTERNATE_NAV_INFOBAR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_INFOBARS_LINK_INFOBAR_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_INFOBARS_ALTERNATE_NAV_INFOBAR_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "chrome/browser/ui/views/infobars/infobar_view.h" | 10 #include "chrome/browser/ui/views/infobars/infobar_view.h" |
| 11 #include "ui/views/controls/link_listener.h" | 11 #include "ui/views/controls/link_listener.h" |
| 12 | 12 |
| 13 class LinkInfoBarDelegate; | 13 class AlternateNavInfoBarDelegate; |
| 14 | 14 |
| 15 // An infobar that shows a string with an embedded link. | 15 // An infobar that shows a string with an embedded link. |
| 16 class LinkInfoBar : public InfoBarView, | 16 class AlternateNavInfoBarView : public InfoBarView, |
| 17 public views::LinkListener { | 17 public views::LinkListener { |
| 18 public: | 18 public: |
| 19 LinkInfoBar(InfoBarService* owner, LinkInfoBarDelegate* delegate); | 19 AlternateNavInfoBarView(InfoBarService* owner, |
| 20 AlternateNavInfoBarDelegate* delegate); |
| 20 | 21 |
| 21 private: | 22 private: |
| 22 virtual ~LinkInfoBar(); | 23 virtual ~AlternateNavInfoBarView(); |
| 23 | 24 |
| 24 // InfoBarView: | 25 // InfoBarView: |
| 25 virtual void Layout() OVERRIDE; | 26 virtual void Layout() OVERRIDE; |
| 26 virtual void ViewHierarchyChanged(bool is_add, | 27 virtual void ViewHierarchyChanged(bool is_add, |
| 27 View* parent, | 28 View* parent, |
| 28 View* child) OVERRIDE; | 29 View* child) OVERRIDE; |
| 29 | 30 |
| 30 // views::LinkListener: | 31 // views::LinkListener: |
| 31 virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE; | 32 virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE; |
| 32 | 33 |
| 33 LinkInfoBarDelegate* GetDelegate(); | 34 AlternateNavInfoBarDelegate* GetDelegate(); |
| 34 | 35 |
| 35 views::Label* label_1_; | 36 views::Label* label_1_; |
| 36 views::Link* link_; | 37 views::Link* link_; |
| 37 views::Label* label_2_; | 38 views::Label* label_2_; |
| 38 | 39 |
| 39 DISALLOW_COPY_AND_ASSIGN(LinkInfoBar); | 40 DISALLOW_COPY_AND_ASSIGN(AlternateNavInfoBarView); |
| 40 }; | 41 }; |
| 41 | 42 |
| 42 #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_LINK_INFOBAR_H_ | 43 #endif // CHROME_BROWSER_UI_VIEWS_INFOBARS_ALTERNATE_NAV_INFOBAR_VIEW_H_ |
| OLD | NEW |