| Index: chrome/browser/ui/unload_controller.cc
|
| diff --git a/chrome/browser/ui/unload_controller.cc b/chrome/browser/ui/unload_controller.cc
|
| index 3768f734c747178e8442ccc0834141cbd809edae..a3ae04693120efd9eb3837704b4039c10547efb1 100644
|
| --- a/chrome/browser/ui/unload_controller.cc
|
| +++ b/chrome/browser/ui/unload_controller.cc
|
| @@ -126,11 +126,11 @@ void UnloadController::TabDetachedAt(content::WebContents* contents,
|
| }
|
|
|
| void UnloadController::TabReplacedAt(TabStripModel* tab_strip_model,
|
| - TabContents* old_contents,
|
| - TabContents* new_contents,
|
| + content::WebContents* old_contents,
|
| + content::WebContents* new_contents,
|
| int index) {
|
| - TabDetachedImpl(old_contents->web_contents());
|
| - TabAttachedImpl(new_contents->web_contents());
|
| + TabDetachedImpl(old_contents);
|
| + TabAttachedImpl(new_contents);
|
| }
|
|
|
| void UnloadController::TabStripEmpty() {
|
|
|