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

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

Issue 10801006: Allow secondary tiles to be unpinned. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove NULL check Created 8 years, 5 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/metro_pin_tab_helper.cc ('k') | chrome/browser/ui/tab_contents/tab_contents.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/tab_contents/tab_contents.h
diff --git a/chrome/browser/ui/tab_contents/tab_contents.h b/chrome/browser/ui/tab_contents/tab_contents.h
index 0004fa0107295ac3e969e15e7f6e15da0883a0b6..70138d833e5ccd919b5d2f09d756a73dacc6ed6e 100644
--- a/chrome/browser/ui/tab_contents/tab_contents.h
+++ b/chrome/browser/ui/tab_contents/tab_contents.h
@@ -27,6 +27,7 @@ class FindTabHelper;
class HistoryTabHelper;
class HungPluginTabHelper;
class InfoBarTabHelper;
+class MetroPinTabHelper;
class OmniboxSearchHint;
class PasswordManager;
class PasswordManagerDelegate;
@@ -175,6 +176,10 @@ class TabContents : public content::WebContentsObserver {
}
InfoBarTabHelper* infobar_tab_helper() { return infobar_tab_helper_.get(); }
+ MetroPinTabHelper* metro_pin_tab_helper() {
+ return metro_pin_tab_helper_.get();
+ }
+
#if defined(ENABLE_ONE_CLICK_SIGNIN)
OneClickSigninHelper* one_click_signin_helper() {
return one_click_signin_helper_.get();
@@ -272,6 +277,7 @@ class TabContents : public content::WebContentsObserver {
scoped_ptr<HistoryTabHelper> history_tab_helper_;
scoped_ptr<HungPluginTabHelper> hung_plugin_tab_helper_;
scoped_ptr<InfoBarTabHelper> infobar_tab_helper_;
+ scoped_ptr<MetroPinTabHelper> metro_pin_tab_helper_;
// PasswordManager and its delegate. The delegate must outlive the manager,
// per documentation in password_manager.h.
« no previous file with comments | « chrome/browser/ui/metro_pin_tab_helper.cc ('k') | chrome/browser/ui/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698