| OLD | NEW |
| 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 #ifndef CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFO_BAR_H_ | 5 #ifndef CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFOBAR_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFO_BAR_H_ | 6 #define CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFOBAR_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/string16.h" | 9 #include "base/string16.h" |
| 10 #include "chrome/browser/infobars/confirm_infobar_delegate.h" | 10 #include "chrome/browser/infobars/confirm_infobar_delegate.h" |
| 11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
| 12 | 12 |
| 13 class InfoBarService; | 13 class InfoBarService; |
| 14 | 14 |
| 15 namespace chrome { | 15 namespace chrome { |
| 16 | 16 |
| 17 // An infobar that is run with a string and a "Learn More" link. | 17 // An infobar that is run with a string and a "Learn More" link. |
| 18 class ObsoleteOSInfoBar : public ConfirmInfoBarDelegate { | 18 class ObsoleteOSInfoBarDelegate : public ConfirmInfoBarDelegate { |
| 19 public: | 19 public: |
| 20 // Creates an obsolete OS delegate and adds it to |infobar_service|. | 20 // Creates an obsolete OS delegate and adds it to |infobar_service|. |
| 21 static void Create(InfoBarService* infobar_service); | 21 static void Create(InfoBarService* infobar_service); |
| 22 | 22 |
| 23 private: | 23 private: |
| 24 virtual string16 GetMessageText() const OVERRIDE; | 24 virtual string16 GetMessageText() const OVERRIDE; |
| 25 virtual int GetButtons() const OVERRIDE; | 25 virtual int GetButtons() const OVERRIDE; |
| 26 virtual string16 GetLinkText() const OVERRIDE; | 26 virtual string16 GetLinkText() const OVERRIDE; |
| 27 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; | 27 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; |
| 28 | 28 |
| 29 ObsoleteOSInfoBar(InfoBarService* infobar_service, | 29 ObsoleteOSInfoBarDelegate(InfoBarService* infobar_service, |
| 30 const string16& message, | 30 const string16& message, |
| 31 const GURL& url); | 31 const GURL& url); |
| 32 virtual ~ObsoleteOSInfoBar(); | 32 virtual ~ObsoleteOSInfoBarDelegate(); |
| 33 | 33 |
| 34 const string16 message_; | 34 const string16 message_; |
| 35 const GURL learn_more_url_; | 35 const GURL learn_more_url_; |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(ObsoleteOSInfoBar); | 37 DISALLOW_COPY_AND_ASSIGN(ObsoleteOSInfoBarDelegate); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 } // namespace chrome | 40 } // namespace chrome |
| 41 | 41 |
| 42 #endif // CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFO_BAR_H_ | 42 #endif // CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_INFOBAR_DELEGATE_H_ |
| OLD | NEW |