Chromium Code Reviews| Index: content/public/browser/web_contents.h |
| diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h |
| index b62e9546d38673f5c142b9366848bd223e80a25d..4f0d625767a8f385ed14747560f0a7313147c248 100644 |
| --- a/content/public/browser/web_contents.h |
| +++ b/content/public/browser/web_contents.h |
| @@ -306,6 +306,10 @@ class WebContents : public PageNavigator, |
| virtual void DecrementCapturerCount() = 0; |
| virtual int GetCapturerCount() const = 0; |
| + // Indicates/Sets whether all audio output from this WebContents is muted. |
| + virtual bool IsAudioMuted() const = 0; |
|
DaleCurtis
2014/09/22 17:45:45
I don't see this one used anywhere?
miu
2014/09/22 19:44:58
It will be used by the UI code. See https://coder
|
| + virtual void SetAudioMuted(bool mute) = 0; |
| + |
| // Indicates whether this tab should be considered crashed. The setter will |
| // also notify the delegate when the flag is changed. |
| virtual bool IsCrashed() const = 0; |