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

Unified Diff: chrome/browser/ui/browser.h

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/browser.h
diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h
index dae2e25d07aa51bf10dbffd02f31def10a67df6e..ee0df03600a71969f17369d35d9d693552b2ca19 100644
--- a/chrome/browser/ui/browser.h
+++ b/chrome/browser/ui/browser.h
@@ -428,7 +428,8 @@ class Browser : public TabStripModelObserver,
content::WebContents* OpenURL(const content::OpenURLParams& params) override;
// Overridden from TabStripModelObserver:
- void TabInsertedAt(content::WebContents* contents,
+ void TabInsertedAt(TabStripModel* tab_strip_model,
+ content::WebContents* contents,
int index,
bool foreground) override;
void TabClosingAt(TabStripModel* tab_strip_model,
@@ -447,7 +448,8 @@ class Browser : public TabStripModelObserver,
content::WebContents* old_contents,
content::WebContents* new_contents,
int index) override;
- void TabPinnedStateChanged(content::WebContents* contents,
+ void TabPinnedStateChanged(TabStripModel* tab_strip_model,
+ content::WebContents* contents,
int index) override;
void TabStripEmpty() override;

Powered by Google App Engine
This is Rietveld 408576698