| Index: chrome/browser/ui/blocked_content/blocked_content_tab_helper_delegate.h
|
| diff --git a/chrome/browser/ui/blocked_content/blocked_content_tab_helper_delegate.h b/chrome/browser/ui/blocked_content/blocked_content_tab_helper_delegate.h
|
| index 3a842c193f82f608238be6c57ceca098da42031d..9936b9b901cf1cd1f30febd0ebbc9c4d5bdcf0c6 100644
|
| --- a/chrome/browser/ui/blocked_content/blocked_content_tab_helper_delegate.h
|
| +++ b/chrome/browser/ui/blocked_content/blocked_content_tab_helper_delegate.h
|
| @@ -5,7 +5,9 @@
|
| #ifndef CHROME_BROWSER_UI_BLOCKED_CONTENT_BLOCKED_CONTENT_TAB_HELPER_DELEGATE_H_
|
| #define CHROME_BROWSER_UI_BLOCKED_CONTENT_BLOCKED_CONTENT_TAB_HELPER_DELEGATE_H_
|
|
|
| -class TabContents;
|
| +namespace content {
|
| +class WebContents;
|
| +}
|
|
|
| // Objects implement this interface to get notified about changes in the
|
| // BlockedContentTabHelper and to provide necessary functionality.
|
| @@ -13,7 +15,8 @@ class BlockedContentTabHelperDelegate {
|
| public:
|
| // If |source| is constrained, returns the tab containing it. Otherwise
|
| // returns |source|.
|
| - virtual TabContents* GetConstrainingTabContents(TabContents* source) = 0;
|
| + virtual content::WebContents* GetConstrainingWebContents(
|
| + content::WebContents* source) = 0;
|
|
|
| protected:
|
| virtual ~BlockedContentTabHelperDelegate();
|
|
|