Index: chrome/browser/ui/tabs/tab_strip_model_observer.cc |
diff --git a/chrome/browser/ui/tabs/tab_strip_model_observer.cc b/chrome/browser/ui/tabs/tab_strip_model_observer.cc |
index 7fb0e5ffa67879be8d68976998340108e68ffe5f..bea661e2071d44f93443d303c3d10c85ec001a9f 100644 |
--- a/chrome/browser/ui/tabs/tab_strip_model_observer.cc |
+++ b/chrome/browser/ui/tabs/tab_strip_model_observer.cc |
@@ -6,7 +6,8 @@ |
using content::WebContents; |
-void TabStripModelObserver::TabInsertedAt(WebContents* contents, |
+void TabStripModelObserver::TabInsertedAt(TabStripModel* tab_strip_model, |
+ WebContents* contents, |
int index, |
bool foreground) { |
} |
@@ -50,8 +51,10 @@ void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model, |
int index) { |
} |
-void TabStripModelObserver::TabPinnedStateChanged(WebContents* contents, |
- int index) { |
+void TabStripModelObserver::TabPinnedStateChanged( |
+ TabStripModel* tab_strip_model, |
+ WebContents* contents, |
+ int index) { |
} |
void TabStripModelObserver::TabBlockedStateChanged(WebContents* contents, |