summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/browser_command_controller.h
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-11 14:47:24 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-11 14:47:24 +0000
commite89cfcb9090e8c98129ae9160c513f504db74599 (patch)
treed61a18eeb9175953b97284008a9ea095a8da180a /chrome/browser/ui/browser_command_controller.h
parent0c71b754680eb40b42ca1ce7a4e6fef7442b5da4 (diff)
downloadchromium_src-e89cfcb9090e8c98129ae9160c513f504db74599.zip
chromium_src-e89cfcb9090e8c98129ae9160c513f504db74599.tar.gz
chromium_src-e89cfcb9090e8c98129ae9160c513f504db74599.tar.bz2
Remove TabContents from TabStripModelObserver::TabDetachedAt.
BUG=107201 TEST=no visible change Review URL: https://chromiumcodereview.appspot.com/11293205 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167122 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser_command_controller.h')
-rw-r--r--chrome/browser/ui/browser_command_controller.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/ui/browser_command_controller.h b/chrome/browser/ui/browser_command_controller.h
index 16cd60b..fc6bbbf 100644
--- a/chrome/browser/ui/browser_command_controller.h
+++ b/chrome/browser/ui/browser_command_controller.h
@@ -96,7 +96,8 @@ class BrowserCommandController : public CommandUpdater::CommandUpdaterDelegate,
virtual void TabInsertedAt(content::WebContents* contents,
int index,
bool foreground) OVERRIDE;
- virtual void TabDetachedAt(TabContents* contents, int index) OVERRIDE;
+ virtual void TabDetachedAt(content::WebContents* contents,
+ int index) OVERRIDE;
virtual void TabReplacedAt(TabStripModel* tab_strip_model,
TabContents* old_contents,
TabContents* new_contents,
@@ -161,7 +162,7 @@ class BrowserCommandController : public CommandUpdater::CommandUpdaterDelegate,
// Add/remove observers for interstitial attachment/detachment from
// |contents|.
void AddInterstitialObservers(content::WebContents* contents);
- void RemoveInterstitialObservers(TabContents* contents);
+ void RemoveInterstitialObservers(content::WebContents* contents);
inline BrowserWindow* window();
inline Profile* profile();