Chromium Code Reviews| Index: content/public/browser/render_process_host.h |
| diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h |
| index 64410e731a42b924e9c3e250463eee924b635ee1..4dc57c4c6d1f4b9ced8119f67bea8dadd1e75509 100644 |
| --- a/content/public/browser/render_process_host.h |
| +++ b/content/public/browser/render_process_host.h |
| @@ -100,6 +100,14 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender, |
| virtual void WidgetHidden() = 0; |
| virtual int VisibleWidgetCount() const = 0; |
| + // Called when no audio streams remain for this render process host. Must be |
| + // called on the IO thread. |
|
gab
2015/06/30 13:41:41
s/IO/UI/
sebsg
2015/07/02 12:58:09
Done.
|
| + virtual void AudioStopped() = 0; |
| + |
| + // Called when a first audio stream has started for this render process host. |
| + // Must be called on the IO thread. |
|
gab
2015/06/30 13:41:41
s/IO/UI/
sebsg
2015/07/02 12:58:09
Done.
|
| + virtual void AudioStarted() = 0; |
| + |
| // Indicates whether the current RenderProcessHost is exclusively hosting |
| // guest RenderFrames. Not all guest RenderFrames are created equal. A guest, |
| // as indicated by BrowserPluginGuest::IsGuest, may coexist with other |