Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3134)

Unified Diff: chrome/browser/ui/constrained_window_tab_helper.h

Issue 10546106: TabContentsWrapper -> TabContents, part 53. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/browser_window.h ('k') | chrome/browser/ui/constrained_window_tab_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « chrome/browser/ui/browser_window.h ('k') | chrome/browser/ui/constrained_window_tab_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698