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

Side by Side Diff: chrome/browser/ui/tabs/tab_utils.h

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: adding owners (sky for chrome/browser/ui/tabs/tab_strip_model.cc, jam for changes in content/public… 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
« no previous file with comments | « chrome/browser/ui/tabs/tab_strip_model.cc ('k') | chrome/browser/ui/tabs/tab_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CHROME_BROWSER_UI_TABS_TAB_UTILS_H_ 5 #ifndef CHROME_BROWSER_UI_TABS_TAB_UTILS_H_
6 #define CHROME_BROWSER_UI_TABS_TAB_UTILS_H_ 6 #define CHROME_BROWSER_UI_TABS_TAB_UTILS_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 15 matching lines...) Expand all
26 enum TabMediaState { 26 enum TabMediaState {
27 TAB_MEDIA_STATE_NONE, 27 TAB_MEDIA_STATE_NONE,
28 TAB_MEDIA_STATE_RECORDING, // Audio/Video being recorded, consumed by tab. 28 TAB_MEDIA_STATE_RECORDING, // Audio/Video being recorded, consumed by tab.
29 TAB_MEDIA_STATE_CAPTURING, // Tab contents being captured. 29 TAB_MEDIA_STATE_CAPTURING, // Tab contents being captured.
30 TAB_MEDIA_STATE_AUDIO_PLAYING, // Audible audio is playing from the tab. 30 TAB_MEDIA_STATE_AUDIO_PLAYING, // Audible audio is playing from the tab.
31 TAB_MEDIA_STATE_AUDIO_MUTING, // Tab audio is being muted. 31 TAB_MEDIA_STATE_AUDIO_MUTING, // Tab audio is being muted.
32 }; 32 };
33 33
34 namespace chrome { 34 namespace chrome {
35 35
36 const char kUserMuteToggleCause[] = "user";
miu 2014/12/09 01:56:24 You should only declare the constant here: cons
sky 2014/12/09 16:37:45 Is there a reason this is a string and not an enum
37
36 // Logic to determine which components (i.e., close button, favicon, and media 38 // Logic to determine which components (i.e., close button, favicon, and media
37 // indicator) of a tab should be shown, given current state. |capacity| 39 // indicator) of a tab should be shown, given current state. |capacity|
38 // specifies how many components can be shown, given available tab width. 40 // specifies how many components can be shown, given available tab width.
39 // 41 //
40 // Precedence rules for deciding what to show when capacity is insufficient to 42 // Precedence rules for deciding what to show when capacity is insufficient to
41 // show everything: 43 // show everything:
42 // 44 //
43 // Active tab: Always show the close button, then the media indicator, then 45 // Active tab: Always show the close button, then the media indicator, then
44 // the favicon. 46 // the favicon.
45 // Inactive tab: Media indicator, then the favicon, then the close button. 47 // Inactive tab: Media indicator, then the favicon, then the close button.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 94
93 // Returns true if the experimental tab audio mute feature is enabled. 95 // Returns true if the experimental tab audio mute feature is enabled.
94 bool IsTabAudioMutingFeatureEnabled(); 96 bool IsTabAudioMutingFeatureEnabled();
95 97
96 // Returns true if audio mute can be activated/deactivated for the given 98 // Returns true if audio mute can be activated/deactivated for the given
97 // |contents|. 99 // |contents|.
98 bool CanToggleAudioMute(content::WebContents* contents); 100 bool CanToggleAudioMute(content::WebContents* contents);
99 101
100 // Indicates/Sets whether all audio output from |contents| is muted. 102 // Indicates/Sets whether all audio output from |contents| is muted.
101 bool IsTabAudioMuted(content::WebContents* contents); 103 bool IsTabAudioMuted(content::WebContents* contents);
102 void SetTabAudioMuted(content::WebContents* contents, bool mute); 104 void SetTabAudioMuted(content::WebContents* contents,
105 bool muted,
106 const std::string& cause);
103 107
104 // Returns true if the tabs at the |indices| in |tab_strip| are all muted. 108 // Returns true if the tabs at the |indices| in |tab_strip| are all muted.
105 bool AreAllTabsMuted(const TabStripModel& tab_strip, 109 bool AreAllTabsMuted(const TabStripModel& tab_strip,
106 const std::vector<int>& indices); 110 const std::vector<int>& indices);
107 111
108 } // namespace chrome 112 } // namespace chrome
109 113
110 #endif // CHROME_BROWSER_UI_TABS_TAB_UTILS_H_ 114 #endif // CHROME_BROWSER_UI_TABS_TAB_UTILS_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/tabs/tab_strip_model.cc ('k') | chrome/browser/ui/tabs/tab_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698