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

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

Issue 1930393002: Switch stream creation and closing in Chrome audio rendering from IPC to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use wrap Created 4 years, 7 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/render_process_host.h
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
index 67fc03f27d938f4bbd0bac27ec35de5edd206aa0..9b30fe927c8d6e616378cacacef1be988f6573e5 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -36,6 +36,7 @@ class Connection;
}
namespace content {
+class AudioRendererHost;
class BrowserContext;
class BrowserMessageFilter;
class RenderProcessHostObserver;
@@ -307,6 +308,8 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
// any RenderViewHosts that are swapped out.
size_t GetActiveViewCount();
+ virtual scoped_refptr<AudioRendererHost> audio_renderer_host() const = 0;
+
// Static management functions -----------------------------------------------
// Flag to run the renderer in process. This is primarily

Powered by Google App Engine
This is Rietveld 408576698