| Index: chrome/browser/ui/constrained_window_tab_helper.h
|
| diff --git a/chrome/browser/ui/constrained_window_tab_helper.h b/chrome/browser/ui/constrained_window_tab_helper.h
|
| index bbc2a30f50335f882f4609f5190d35205db30953..7208a595a2ae917b87b09373b899f064e5106550 100644
|
| --- a/chrome/browser/ui/constrained_window_tab_helper.h
|
| +++ b/chrome/browser/ui/constrained_window_tab_helper.h
|
| @@ -13,12 +13,11 @@
|
| class ConstrainedWindow;
|
| class ConstrainedWindowTabHelperDelegate;
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
|
|
| // Per-tab class to manage constrained windows.
|
| class ConstrainedWindowTabHelper : public content::WebContentsObserver {
|
| public:
|
| - explicit ConstrainedWindowTabHelper(TabContentsWrapper* tab_contents);
|
| + explicit ConstrainedWindowTabHelper(TabContents* tab_contents);
|
| virtual ~ConstrainedWindowTabHelper();
|
|
|
| ConstrainedWindowTabHelperDelegate* delegate() const { return delegate_; }
|
| @@ -60,8 +59,8 @@ class ConstrainedWindowTabHelper : public content::WebContentsObserver {
|
| virtual void DidGetIgnoredUIEvent() OVERRIDE;
|
| virtual void WebContentsDestroyed(content::WebContents* tab) OVERRIDE;
|
|
|
| - // Our owning TabContentsWrapper.
|
| - TabContentsWrapper* wrapper_;
|
| + // Our owning TabContents.
|
| + TabContents* tab_contents_;
|
|
|
| // Delegate for notifying our owner about stuff. Not owned by us.
|
| ConstrainedWindowTabHelperDelegate* delegate_;
|
|
|