Index: chrome/browser/tabs/tab_strip_model_unittest.cc |
diff --git a/chrome/browser/tabs/tab_strip_model_unittest.cc b/chrome/browser/tabs/tab_strip_model_unittest.cc |
index 3077f8cd930210afc7ef3d24c008cb72e11700ac..f54670712ab030810a244910c2d73ea181c9a561 100644 |
--- a/chrome/browser/tabs/tab_strip_model_unittest.cc |
+++ b/chrome/browser/tabs/tab_strip_model_unittest.cc |
@@ -344,10 +344,10 @@ class MockTabStripModelObserver : public TabStripModelObserver { |
s->foreground = foreground; |
states_.push_back(s); |
} |
- virtual void TabSelectedAt(TabContentsWrapper* old_contents, |
- TabContentsWrapper* new_contents, |
- int index, |
- bool user_gesture) { |
+ virtual void TabActivatedAt(TabContentsWrapper* old_contents, |
+ TabContentsWrapper* new_contents, |
+ int index, |
+ bool user_gesture) { |
State* s = new State(new_contents, index, SELECT); |
s->src_contents = old_contents; |
s->user_gesture = user_gesture; |
@@ -2183,7 +2183,7 @@ TEST_F(TabStripModelTest, CloseSelectedTabs) { |
// Verifies that if we change the selection from a multi selection to a single |
// selection, but not in a way that changes the selected_index that |
-// TabSelectedAt is still invoked. |
+// TabActivatedAt is still invoked. |
TEST_F(TabStripModelTest, MultipleToSingle) { |
TabStripDummyDelegate delegate(NULL); |
TabStripModel strip(&delegate, profile()); |