| 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 "base/macros.h" |
| 10 #include "components/infobars/core/confirm_infobar_delegate.h" | 11 #include "components/infobars/core/confirm_infobar_delegate.h" |
| 11 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 12 | 13 |
| 13 class HostContentSettingsMap; | 14 class HostContentSettingsMap; |
| 14 class InfoBarService; | 15 class InfoBarService; |
| 15 class TabSpecificContentSettings; | 16 class TabSpecificContentSettings; |
| 16 | 17 |
| 17 namespace content { | 18 namespace content { |
| 18 class WebContents; | 19 class WebContents; |
| 19 } | 20 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 const base::FilePath plugin_path_; | 57 const base::FilePath plugin_path_; |
| 57 const std::string languages_; | 58 const std::string languages_; |
| 58 HostContentSettingsMap* content_settings_; | 59 HostContentSettingsMap* content_settings_; |
| 59 TabSpecificContentSettings* tab_content_settings_; | 60 TabSpecificContentSettings* tab_content_settings_; |
| 60 base::Callback<void(bool)> callback_; | 61 base::Callback<void(bool)> callback_; |
| 61 | 62 |
| 62 DISALLOW_COPY_AND_ASSIGN(PepperBrokerInfoBarDelegate); | 63 DISALLOW_COPY_AND_ASSIGN(PepperBrokerInfoBarDelegate); |
| 63 }; | 64 }; |
| 64 | 65 |
| 65 #endif // CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_ | 66 #endif // CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_ |
| OLD | NEW |