| Index: chrome/browser/tab_contents/tab_contents.h
|
| diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h
|
| index 7e37c1af08f8bfc4d756420b893f46cb62889fcc..1b1b6c6c1d35aa3a6669654812d37581463fd1d0 100644
|
| --- a/chrome/browser/tab_contents/tab_contents.h
|
| +++ b/chrome/browser/tab_contents/tab_contents.h
|
| @@ -71,6 +71,7 @@ struct PasswordForm;
|
|
|
| class AutocompleteHistoryManager;
|
| class AutoFillManager;
|
| +class BlockedPluginManager;
|
| class BlockedPopupContainer;
|
| class DOMUI;
|
| class DownloadItem;
|
| @@ -897,6 +898,7 @@ class TabContents : public PageNavigator,
|
| virtual RenderViewHostDelegate::FavIcon* GetFavIconDelegate();
|
| virtual RenderViewHostDelegate::Autocomplete* GetAutocompleteDelegate();
|
| virtual RenderViewHostDelegate::AutoFill* GetAutoFillDelegate();
|
| + virtual RenderViewHostDelegate::BlockedPlugin* GetBlockedPluginDelegate();
|
| virtual RenderViewHostDelegate::SSL* GetSSLDelegate();
|
| virtual AutomationResourceRoutingDelegate*
|
| GetAutomationResourceRoutingDelegate();
|
| @@ -1076,6 +1078,9 @@ class TabContents : public PageNavigator,
|
| // TabContentsSSLHelper, lazily created.
|
| scoped_ptr<TabContentsSSLHelper> ssl_helper_;
|
|
|
| + // BlockedPluginManager, lazily created.
|
| + scoped_ptr<BlockedPluginManager> blocked_plugin_manager_;
|
| +
|
| // Handles drag and drop event forwarding to extensions.
|
| BookmarkDrag* bookmark_drag_;
|
|
|
|
|