| 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_TAB_CONTENTS_LINK_INFOBAR_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_API_INFOBARS_LINK_INFOBAR_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_LINK_INFOBAR_DELEGATE_H_ | 6 #define CHROME_BROWSER_API_INFOBARS_LINK_INFOBAR_DELEGATE_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 "base/string16.h" | 10 #include "base/string16.h" |
| 11 #include "chrome/browser/infobars/infobar_delegate.h" | 11 #include "chrome/browser/api/infobars/infobar_delegate.h" |
| 12 | 12 |
| 13 class InfoBarTabHelper; | 13 class InfoBarTabHelper; |
| 14 | 14 |
| 15 // An interface derived from InfoBarDelegate implemented by objects wishing to | 15 // An interface derived from InfoBarDelegate implemented by objects wishing to |
| 16 // control a LinkInfoBar. | 16 // control a LinkInfoBar. |
| 17 class LinkInfoBarDelegate : public InfoBarDelegate { | 17 class LinkInfoBarDelegate : public InfoBarDelegate { |
| 18 public: | 18 public: |
| 19 // Returns the message string to be displayed in the InfoBar. |link_offset| | 19 // Returns the message string to be displayed in the InfoBar. |link_offset| |
| 20 // is the position where the link should be inserted. | 20 // is the position where the link should be inserted. |
| 21 virtual string16 GetMessageTextWithOffset(size_t* link_offset) const = 0; | 21 virtual string16 GetMessageTextWithOffset(size_t* link_offset) const = 0; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 35 virtual ~LinkInfoBarDelegate(); | 35 virtual ~LinkInfoBarDelegate(); |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 // InfoBarDelegate: | 38 // InfoBarDelegate: |
| 39 virtual InfoBar* CreateInfoBar(InfoBarTabHelper* infobar_helper) OVERRIDE; | 39 virtual InfoBar* CreateInfoBar(InfoBarTabHelper* infobar_helper) OVERRIDE; |
| 40 virtual LinkInfoBarDelegate* AsLinkInfoBarDelegate() OVERRIDE; | 40 virtual LinkInfoBarDelegate* AsLinkInfoBarDelegate() OVERRIDE; |
| 41 | 41 |
| 42 DISALLOW_COPY_AND_ASSIGN(LinkInfoBarDelegate); | 42 DISALLOW_COPY_AND_ASSIGN(LinkInfoBarDelegate); |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 #endif // CHROME_BROWSER_TAB_CONTENTS_LINK_INFOBAR_DELEGATE_H_ | 45 #endif // CHROME_BROWSER_API_INFOBARS_LINK_INFOBAR_DELEGATE_H_ |
| 46 |
| OLD | NEW |