| Index: chrome/browser/ui/tabs/tab_strip_model.cc
|
| diff --git a/chrome/browser/ui/tabs/tab_strip_model.cc b/chrome/browser/ui/tabs/tab_strip_model.cc
|
| index 1d5f4a1d47be88c58175c6effa53ab5b63dd5e4e..61e072a46c7ff8a3700853d2aa57821f9a71d4a6 100644
|
| --- a/chrome/browser/ui/tabs/tab_strip_model.cc
|
| +++ b/chrome/browser/ui/tabs/tab_strip_model.cc
|
| @@ -159,7 +159,10 @@ TabContents* TabStripModel::ReplaceTabContentsAt(int index,
|
| contents_data_[index]->contents = new_contents->web_contents();
|
|
|
| FOR_EACH_OBSERVER(TabStripModelObserver, observers_,
|
| - TabReplacedAt(this, old_contents, new_contents, index));
|
| + TabReplacedAt(this,
|
| + old_contents->web_contents(),
|
| + new_contents->web_contents(),
|
| + index));
|
|
|
| // When the active tab contents is replaced send out a selection notification
|
| // too. We do this as nearly all observers need to treat a replacement of the
|
|
|