| Index: chrome/browser/ui/tabs/tab_strip_model_unittest.cc
|
| diff --git a/chrome/browser/ui/tabs/tab_strip_model_unittest.cc b/chrome/browser/ui/tabs/tab_strip_model_unittest.cc
|
| index e79cf056b422c323b9399f0c5ac26e00619d4a50..3f9dbc7354e9dc063747dac85f078728755c410e 100644
|
| --- a/chrome/browser/ui/tabs/tab_strip_model_unittest.cc
|
| +++ b/chrome/browser/ui/tabs/tab_strip_model_unittest.cc
|
| @@ -275,13 +275,12 @@ class MockTabStripModelObserver : public TabStripModelObserver {
|
| s.foreground = foreground;
|
| states_.push_back(s);
|
| }
|
| - virtual void ActiveTabChanged(TabContents* old_contents,
|
| - TabContents* new_contents,
|
| + virtual void ActiveTabChanged(WebContents* old_contents,
|
| + WebContents* new_contents,
|
| int index,
|
| bool user_gesture) OVERRIDE {
|
| - State s(
|
| - new_contents ? new_contents->web_contents() : NULL, index, ACTIVATE);
|
| - s.src_contents = old_contents ? old_contents->web_contents() : NULL;
|
| + State s(new_contents, index, ACTIVATE);
|
| + s.src_contents = old_contents;
|
| s.user_gesture = user_gesture;
|
| states_.push_back(s);
|
| }
|
|
|