| Index: components/infobars/core/infobar_delegate.h
|
| diff --git a/components/infobars/core/infobar_delegate.h b/components/infobars/core/infobar_delegate.h
|
| index 774c215c6ec063a9816729175d689ab37c3a1af0..40b73a9a3f130e61f8c865fa91533152781c3e9a 100644
|
| --- a/components/infobars/core/infobar_delegate.h
|
| +++ b/components/infobars/core/infobar_delegate.h
|
| @@ -21,6 +21,10 @@ class ScreenCaptureInfoBarDelegate;
|
| class ThemeInstalledInfoBarDelegate;
|
| class ThreeDAPIInfoBarDelegate;
|
|
|
| +#if defined(OS_ANDROID)
|
| +class MediaThrottleInfoBarDelegate;
|
| +#endif
|
| +
|
| namespace translate {
|
| class TranslateInfoBarDelegate;
|
| }
|
| @@ -130,6 +134,9 @@ class InfoBarDelegate {
|
| virtual ThemeInstalledInfoBarDelegate* AsThemePreviewInfobarDelegate();
|
| virtual ThreeDAPIInfoBarDelegate* AsThreeDAPIInfoBarDelegate();
|
| virtual translate::TranslateInfoBarDelegate* AsTranslateInfoBarDelegate();
|
| +#if defined(OS_ANDROID)
|
| + virtual MediaThrottleInfoBarDelegate* AsMediaThrottleInfoBarDelegate();
|
| +#endif
|
|
|
| void set_infobar(InfoBar* infobar) { infobar_ = infobar; }
|
| void set_nav_entry_id(int nav_entry_id) { nav_entry_id_ = nav_entry_id; }
|
|
|