| 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_PEPPER_BROKER_INFOBAR_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_ | 6 #define CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "components/infobars/core/confirm_infobar_delegate.h" | 10 #include "components/infobars/core/confirm_infobar_delegate.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 const base::FilePath& plugin_path, | 32 const base::FilePath& plugin_path, |
| 33 const base::Callback<void(bool)>& callback); | 33 const base::Callback<void(bool)>& callback); |
| 34 | 34 |
| 35 private: | 35 private: |
| 36 PepperBrokerInfoBarDelegate(const GURL& url, | 36 PepperBrokerInfoBarDelegate(const GURL& url, |
| 37 const base::FilePath& plugin_path, | 37 const base::FilePath& plugin_path, |
| 38 const std::string& languages, | 38 const std::string& languages, |
| 39 HostContentSettingsMap* content_settings, | 39 HostContentSettingsMap* content_settings, |
| 40 TabSpecificContentSettings* tab_content_settings, | 40 TabSpecificContentSettings* tab_content_settings, |
| 41 const base::Callback<void(bool)>& callback); | 41 const base::Callback<void(bool)>& callback); |
| 42 virtual ~PepperBrokerInfoBarDelegate(); | 42 ~PepperBrokerInfoBarDelegate() override; |
| 43 | 43 |
| 44 // ConfirmInfoBarDelegate: | 44 // ConfirmInfoBarDelegate: |
| 45 virtual int GetIconID() const override; | 45 int GetIconID() const override; |
| 46 virtual base::string16 GetMessageText() const override; | 46 base::string16 GetMessageText() const override; |
| 47 virtual base::string16 GetButtonLabel(InfoBarButton button) const override; | 47 base::string16 GetButtonLabel(InfoBarButton button) const override; |
| 48 virtual bool Accept() override; | 48 bool Accept() override; |
| 49 virtual bool Cancel() override; | 49 bool Cancel() override; |
| 50 virtual base::string16 GetLinkText() const override; | 50 base::string16 GetLinkText() const override; |
| 51 virtual bool LinkClicked(WindowOpenDisposition disposition) override; | 51 bool LinkClicked(WindowOpenDisposition disposition) override; |
| 52 | 52 |
| 53 void DispatchCallback(bool result); | 53 void DispatchCallback(bool result); |
| 54 | 54 |
| 55 const GURL url_; | 55 const GURL url_; |
| 56 const base::FilePath plugin_path_; | 56 const base::FilePath plugin_path_; |
| 57 const std::string languages_; | 57 const std::string languages_; |
| 58 HostContentSettingsMap* content_settings_; | 58 HostContentSettingsMap* content_settings_; |
| 59 TabSpecificContentSettings* tab_content_settings_; | 59 TabSpecificContentSettings* tab_content_settings_; |
| 60 base::Callback<void(bool)> callback_; | 60 base::Callback<void(bool)> callback_; |
| 61 | 61 |
| 62 DISALLOW_COPY_AND_ASSIGN(PepperBrokerInfoBarDelegate); | 62 DISALLOW_COPY_AND_ASSIGN(PepperBrokerInfoBarDelegate); |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 #endif // CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_ | 65 #endif // CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_ |
| OLD | NEW |