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

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

Issue 2784563003: WebRTC Audio private API: removing WebRtcAudioPrivate(Set/Get)ActiveSinkFunction (Closed)
Patch Set: updated api version Created 3 years, 8 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 00b4c8c575d88a0475f40089685f983e581d4641..1330045bb1e99842c4f4d5ffd482ee06c6fb72c1 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -29,10 +29,6 @@ class SharedPersistentMemoryAllocator;
class TimeDelta;
}
-namespace media {
-class AudioOutputController;
-}
-
namespace content {
class BrowserContext;
class BrowserMessageFilter;
@@ -298,16 +294,6 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
// Note: Do not use! Will disappear after PlzNavitate is completed.
virtual const base::TimeTicks& GetInitTimeForNavigationMetrics() const = 0;
- // Retrieves the list of AudioOutputController objects associated
- // with this object and passes it to the callback you specify, on
- // the same thread on which you called the method.
- typedef std::list<scoped_refptr<media::AudioOutputController>>
- AudioOutputControllerList;
- typedef base::Callback<void(const AudioOutputControllerList&)>
- GetAudioOutputControllersCallback;
- virtual void GetAudioOutputControllers(
- const GetAudioOutputControllersCallback& callback) const = 0;
-
// Returns true if this process currently has backgrounded priority.
virtual bool IsProcessBackgrounded() const = 0;
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/public/test/mock_render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698