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

Side by Side 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: MutedToggleCause --> muted_toggle_cause Created 6 years 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" 5 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
6 6
7 using content::WebContents; 7 using content::WebContents;
8 8
9 void TabStripModelObserver::TabInsertedAt(WebContents* contents, 9 void TabStripModelObserver::TabInsertedAt(WebContents* contents,
10 int index, 10 int index,
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model, 47 void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model,
48 WebContents* old_contents, 48 WebContents* old_contents,
49 WebContents* new_contents, 49 WebContents* new_contents,
50 int index) { 50 int index) {
51 } 51 }
52 52
53 void TabStripModelObserver::TabPinnedStateChanged(WebContents* contents, 53 void TabStripModelObserver::TabPinnedStateChanged(WebContents* contents,
54 int index) { 54 int index) {
55 } 55 }
56 56
57 void TabStripModelObserver::TabAudibleStateChanged(WebContents* contents,
58 bool audible) {
59
60 }
61
62 void TabStripModelObserver::TabMutedStateChanged(WebContents* contents,
63 bool muted,
64 const std::string& cause) {
65
66 }
67
57 void TabStripModelObserver::TabMiniStateChanged(WebContents* contents, 68 void TabStripModelObserver::TabMiniStateChanged(WebContents* contents,
58 int index) { 69 int index) {
59 } 70 }
60 71
61 void TabStripModelObserver::TabBlockedStateChanged(WebContents* contents, 72 void TabStripModelObserver::TabBlockedStateChanged(WebContents* contents,
62 int index) { 73 int index) {
63 } 74 }
64 75
65 void TabStripModelObserver::TabStripEmpty() { 76 void TabStripModelObserver::TabStripEmpty() {
66 } 77 }
67 78
68 void TabStripModelObserver::WillCloseAllTabs() { 79 void TabStripModelObserver::WillCloseAllTabs() {
69 } 80 }
70 81
71 void TabStripModelObserver::CloseAllTabsCanceled() { 82 void TabStripModelObserver::CloseAllTabsCanceled() {
72 } 83 }
73 84
74 void TabStripModelObserver::TabStripModelDeleted() { 85 void TabStripModelObserver::TabStripModelDeleted() {
75 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698