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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_MEDIA_AUDIO_STREAM_INDICATOR_H_
6 #define CHROME_BROWSER_MEDIA_AUDIO_STREAM_INDICATOR_H_
11 #include "base/memory/ref_counted.h"
17 class AudioStreamIndicator
18 : public base::RefCountedThreadSafe
<AudioStreamIndicator
> {
20 AudioStreamIndicator();
22 // This method should be called on the IO thread.
23 void UpdateWebContentsStatus(int render_process_id
,
30 // This method should be called on the UI thread.
31 bool IsPlayingAudio(const content::WebContents
* contents
);
33 // Returns the audible |level| in the range [0.0,1.0], where 0.0 means the
34 // audio signal is imperceivably silent and 1.0 means it is at maximum
35 // volume. |signal_has_clipped| is set to true if any part of the audio
36 // signal has clipped since the last call to this method.
38 // This method should be called on the UI thread.
39 void CurrentAudibleLevel(const content::WebContents
* contents
,
40 float* level
, bool* signal_has_clipped
);
43 // <render process ID, render view ID>
44 // Note: Using std::pair<> to reduce binary-size bloat.
45 typedef std::pair
<int, int> RenderViewId
;
46 struct StreamPowerLevel
{
51 typedef std::vector
<StreamPowerLevel
> StreamPowerLevels
;
52 // Container for the power levels of streams playing from each render view.
53 typedef std::map
<RenderViewId
, StreamPowerLevels
> RenderViewStreamMap
;
55 friend class base::RefCountedThreadSafe
<AudioStreamIndicator
>;
56 virtual ~AudioStreamIndicator();
58 void UpdateWebContentsStatusOnUIThread(int render_process_id
,
65 RenderViewStreamMap audio_streams_
;
68 #endif // CHROME_BROWSER_MEDIA_AUDIO_STREAM_INDICATOR_H_