| Index: chrome/browser/ui/browser_command_controller.cc
|
| diff --git a/chrome/browser/ui/browser_command_controller.cc b/chrome/browser/ui/browser_command_controller.cc
|
| index c26a7c756baea7ee6ac30c9b273f625904fc62f1..93df2cdf7da9b80951e4e48a80041ff9a41a86b1 100644
|
| --- a/chrome/browser/ui/browser_command_controller.cc
|
| +++ b/chrome/browser/ui/browser_command_controller.cc
|
| @@ -723,11 +723,11 @@ void BrowserCommandController::TabDetachedAt(WebContents* contents, int index) {
|
| }
|
|
|
| void BrowserCommandController::TabReplacedAt(TabStripModel* tab_strip_model,
|
| - TabContents* old_contents,
|
| - TabContents* new_contents,
|
| + WebContents* old_contents,
|
| + WebContents* new_contents,
|
| int index) {
|
| - RemoveInterstitialObservers(old_contents->web_contents());
|
| - AddInterstitialObservers(new_contents->web_contents());
|
| + RemoveInterstitialObservers(old_contents);
|
| + AddInterstitialObservers(new_contents);
|
| }
|
|
|
| ////////////////////////////////////////////////////////////////////////////////
|
|
|