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

Unified Diff: chrome/browser/ui/tab_contents/tab_contents_wrapper.h

Issue 7880003: content: Move constrained window code from TabContents to TabContentsWrapper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix mac regression now that shutdown timing was changed for views. Created 9 years, 3 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
Index: chrome/browser/ui/tab_contents/tab_contents_wrapper.h
diff --git a/chrome/browser/ui/tab_contents/tab_contents_wrapper.h b/chrome/browser/ui/tab_contents/tab_contents_wrapper.h
index 019c0b74d71ba8284bfdffa4594b95a60e2ef42b..f4828946dd955be8a825f5640be1365407250116 100644
--- a/chrome/browser/ui/tab_contents/tab_contents_wrapper.h
+++ b/chrome/browser/ui/tab_contents/tab_contents_wrapper.h
@@ -23,6 +23,7 @@ class AutofillManager;
class AutomationTabHelper;
class BlockedContentTabHelper;
class BookmarkTabHelper;
+class ConstrainedWindowTabHelper;
class DownloadRequestLimiterObserver;
class Extension;
class ExtensionTabHelper;
@@ -171,6 +172,9 @@ class TabContentsWrapper : public TabContentsObserver,
HistoryTabHelper* history_tab_helper() { return history_tab_helper_.get(); }
InfoBarTabHelper* infobar_tab_helper() { return infobar_tab_helper_.get(); }
PasswordManager* password_manager() { return password_manager_.get(); }
+ ConstrainedWindowTabHelper* constrained_window_tab_helper() {
+ return constrained_window_tab_helper_.get();
+ }
Avi (use Gerrit) 2011/09/28 00:16:50 Alphabetical, plz? Between BookmarkTabHelper and E
prerender::PrerenderTabHelper* prerender_tab_helper() {
return prerender_tab_helper_.get();
@@ -279,6 +283,7 @@ class TabContentsWrapper : public TabContentsObserver,
scoped_ptr<FindTabHelper> find_tab_helper_;
scoped_ptr<HistoryTabHelper> history_tab_helper_;
scoped_ptr<InfoBarTabHelper> infobar_tab_helper_;
+ scoped_ptr<ConstrainedWindowTabHelper> constrained_window_tab_helper_;
Avi (use Gerrit) 2011/09/28 00:16:50 Alphabetical here too, plz.
// PasswordManager and its delegate. The delegate must outlive the manager,
// per documentation in password_manager.h.

Powered by Google App Engine
This is Rietveld 408576698