Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3000)

Unified Diff: chrome/browser/ui/tabs/tab_strip_model_observer.cc

Issue 2335203003: Add metrics to keep track of the tab activate/deactivate cycle (Closed)
Patch Set: Addressed comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698