| 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_PLUGIN_INFOBAR_DELEGATES_H_ | 5 #ifndef CHROME_BROWSER_PLUGIN_INFOBAR_DELEGATES_H_ |
| 6 #define CHROME_BROWSER_PLUGIN_INFOBAR_DELEGATES_H_ | 6 #define CHROME_BROWSER_PLUGIN_INFOBAR_DELEGATES_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" | 9 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" |
| 10 #include "googleurl/src/gurl.h" | 10 #include "googleurl/src/gurl.h" |
| 11 | 11 |
| 12 #if defined(ENABLE_PLUGIN_INSTALLATION) | 12 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 13 #include "chrome/browser/plugin_installer_observer.h" | 13 #include "chrome/browser/plugin_installer_observer.h" |
| 14 #endif // defined(ENABLE_PLUGIN_INSTALLATION) | 14 #endif // defined(ENABLE_PLUGIN_INSTALLATION) |
| 15 | 15 |
| 16 class HostContentSettingsMap; | 16 class HostContentSettingsMap; |
| 17 class PluginObserver; | 17 class PluginObserver; |
| 18 | 18 |
| 19 // Base class for blocked plug-in infobars. | 19 // Base class for blocked plug-in infobars. |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 virtual string16 GetLinkText() const OVERRIDE; | 192 virtual string16 GetLinkText() const OVERRIDE; |
| 193 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; | 193 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; |
| 194 | 194 |
| 195 string16 message_; | 195 string16 message_; |
| 196 | 196 |
| 197 DISALLOW_COPY_AND_ASSIGN(PluginMetroModeInfoBarDelegate); | 197 DISALLOW_COPY_AND_ASSIGN(PluginMetroModeInfoBarDelegate); |
| 198 }; | 198 }; |
| 199 #endif // defined(OS_WIN) | 199 #endif // defined(OS_WIN) |
| 200 | 200 |
| 201 #endif // CHROME_BROWSER_PLUGIN_INFOBAR_DELEGATES_H_ | 201 #endif // CHROME_BROWSER_PLUGIN_INFOBAR_DELEGATES_H_ |
| OLD | NEW |