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

Unified Diff: content/public/browser/web_contents.h

Issue 2383473002: [scheduler] Teach scheduler about audio state (Closed)
Patch Set: Support out-of-process frames Created 4 years, 2 months 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index 1eb4d7c0c60b656b6b1918b8f7ae61be99089e69..168ad8d0d6166046adc668946041f4be3fecc378 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -259,6 +259,10 @@ class WebContents : public PageNavigator,
// number of sent messages (i.e. the number of processed frames).
virtual int SendToAllFrames(IPC::Message* message) = 0;
+ // Sends the given IPC to all live WebViews (can be more than one due to
+ // out-of-process iframes) and returns the number of sent messages.
+ virtual int SendToAllViews(IPC::Message* message) = 0;
+
// Gets the current RenderViewHost for this tab.
virtual RenderViewHost* GetRenderViewHost() const = 0;
@@ -407,6 +411,10 @@ class WebContents : public PageNavigator,
// change.
virtual void NotifyNavigationStateChanged(InvalidateTypes changed_flags) = 0;
+ // Method for notifying WebContents that audio started or stopped being
+ // audible.
+ virtual void OnAudioStateChanged(bool is_audio_playing) = 0;
+
// Get/Set the last time that the WebContents was made active (either when it
// was created or shown with WasShown()).
virtual base::TimeTicks GetLastActiveTime() const = 0;

Powered by Google App Engine
This is Rietveld 408576698