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

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

Issue 757033005: Make tab audible and muted states and cause available for an extension API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Better webcontents_impl decoupling Created 5 years, 11 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 6b3911b0b184e93083a889eb29b35c8d88703f8e..5d10f1353e946eb4171da0894e8109d8e7021c08 100644
--- a/chrome/browser/ui/tabs/tab_strip_model_observer.cc
+++ b/chrome/browser/ui/tabs/tab_strip_model_observer.cc
@@ -54,6 +54,15 @@ void TabStripModelObserver::TabPinnedStateChanged(WebContents* contents,
int index) {
}
+void TabStripModelObserver::TabAudibleStateChanged(WebContents* contents,
+ bool audible) {
+}
+
+void TabStripModelObserver::TabMutedStateChanged(WebContents* contents,
+ bool muted,
+ const std::string& cause) {
+}
+
void TabStripModelObserver::TabMiniStateChanged(WebContents* contents,
int index) {
}

Powered by Google App Engine
This is Rietveld 408576698