| Index: chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc b/chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
|
| index a7c8937fe4c69c5e7def6a29f5547b445c2926c1..3e6bd8a2ab0a4f9def731cd1d8dd502a7112132f 100644
|
| --- a/chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
|
| @@ -1136,10 +1136,10 @@ void TabStripGtk::TabChangedAt(WebContents* contents,
|
| }
|
|
|
| void TabStripGtk::TabReplacedAt(TabStripModel* tab_strip_model,
|
| - TabContents* old_contents,
|
| - TabContents* new_contents,
|
| + WebContents* old_contents,
|
| + WebContents* new_contents,
|
| int index) {
|
| - TabChangedAt(new_contents->web_contents(), index, ALL);
|
| + TabChangedAt(new_contents, index, ALL);
|
| }
|
|
|
| void TabStripGtk::TabMiniStateChanged(WebContents* contents, int index) {
|
|
|