| 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_SESSION_CRASHED_INFOBAR_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_STARTUP_SESSION_CRASHED_INFOBAR_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_STARTUP_SESSION_CRASHED_INFOBAR_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_STARTUP_SESSION_CRASHED_INFOBAR_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/infobars/core/confirm_infobar_delegate.h" | 9 #include "components/infobars/core/confirm_infobar_delegate.h" |
| 10 | 10 |
| 11 class Browser; | 11 class Browser; |
| 12 class Profile; | 12 class Profile; |
| 13 | 13 |
| 14 // A delegate for the InfoBar shown when the previous session has crashed. | 14 // A delegate for the InfoBar shown when the previous session has crashed. |
| 15 // | 15 // |
| 16 // TODO: remove this class once mac supports SessionCrashedBubble. | 16 // TODO: remove this class once mac supports SessionCrashedBubble. |
| 17 // http://crbug.com/653966. | 17 // http://crbug.com/653966. |
| 18 class SessionCrashedInfoBarDelegate : public ConfirmInfoBarDelegate { | 18 class SessionCrashedInfoBarDelegate : public ConfirmInfoBarDelegate { |
| 19 public: | 19 public: |
| 20 // If |browser| is not incognito, creates a session crashed infobar and | 20 // If |browser| is not incognito, creates a session crashed infobar and |
| 21 // delegate and adds the infobar to the InfoBarService for |browser|. | 21 // delegate and adds the infobar to the InfoBarService for |browser|. |
| 22 static void Create(Browser* browser); | 22 static void Create(Browser* browser); |
| 23 | 23 |
| 24 private: | 24 private: |
| 25 explicit SessionCrashedInfoBarDelegate(Profile* profile); | 25 explicit SessionCrashedInfoBarDelegate(Profile* profile); |
| 26 ~SessionCrashedInfoBarDelegate() override; | 26 ~SessionCrashedInfoBarDelegate() override; |
| 27 | 27 |
| 28 // ConfirmInfoBarDelegate: | 28 // ConfirmInfoBarDelegate: |
| 29 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override; | 29 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override; |
| 30 gfx::VectorIconId GetVectorIconId() const override; | 30 const gfx::VectorIcon& GetVectorIcon() const override; |
| 31 base::string16 GetMessageText() const override; | 31 base::string16 GetMessageText() const override; |
| 32 int GetButtons() const override; | 32 int GetButtons() const override; |
| 33 base::string16 GetButtonLabel(InfoBarButton button) const override; | 33 base::string16 GetButtonLabel(InfoBarButton button) const override; |
| 34 bool Accept() override; | 34 bool Accept() override; |
| 35 | 35 |
| 36 bool accepted_; | 36 bool accepted_; |
| 37 Profile* profile_; | 37 Profile* profile_; |
| 38 | 38 |
| 39 DISALLOW_COPY_AND_ASSIGN(SessionCrashedInfoBarDelegate); | 39 DISALLOW_COPY_AND_ASSIGN(SessionCrashedInfoBarDelegate); |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 #endif // CHROME_BROWSER_UI_STARTUP_SESSION_CRASHED_INFOBAR_DELEGATE_H_ | 42 #endif // CHROME_BROWSER_UI_STARTUP_SESSION_CRASHED_INFOBAR_DELEGATE_H_ |
| OLD | NEW |