| 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 9d54fec7ef8534f2468b746f6a5be7be61d502b2..f040375f844bf6032b3b6167f6aa9f4a93631bdf 100644
|
| --- a/chrome/browser/ui/tabs/tab_strip_model_unittest.cc
|
| +++ b/chrome/browser/ui/tabs/tab_strip_model_unittest.cc
|
| @@ -149,7 +149,8 @@ class TabBlockedStateTestBrowser
|
|
|
| private:
|
| // TabStripModelObserver
|
| - void TabInsertedAt(WebContents* contents,
|
| + void TabInsertedAt(TabStripModel* tab_strip_model,
|
| + WebContents* contents,
|
| int index,
|
| bool foreground) override {
|
| web_modal::WebContentsModalDialogManager* manager =
|
| @@ -347,7 +348,8 @@ class MockTabStripModelObserver : public TabStripModelObserver {
|
| }
|
|
|
| // TabStripModelObserver implementation:
|
| - void TabInsertedAt(WebContents* contents,
|
| + void TabInsertedAt(TabStripModel* tab_strip_model,
|
| + WebContents* contents,
|
| int index,
|
| bool foreground) override {
|
| empty_ = false;
|
| @@ -401,7 +403,9 @@ class MockTabStripModelObserver : public TabStripModelObserver {
|
| s.src_contents = old_contents;
|
| states_.push_back(s);
|
| }
|
| - void TabPinnedStateChanged(WebContents* contents, int index) override {
|
| + void TabPinnedStateChanged(TabStripModel* tab_strip_model,
|
| + WebContents* contents,
|
| + int index) override {
|
| states_.push_back(State(contents, index, PINNED));
|
| }
|
| void TabStripEmpty() override { empty_ = true; }
|
|
|