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

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

Issue 2784563003: WebRTC Audio private API: removing WebRtcAudioPrivate(Set/Get)ActiveSinkFunction (Closed)
Patch Set: nitfixes Created 3 years, 9 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 c7b5451d4c9705d1beca8d029d654a1b19841339..21d3ac89aaf23a4c0533ff5ca7199e633959ae22 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -28,10 +28,6 @@ class SharedPersistentMemoryAllocator;
class TimeDelta;
}
-namespace media {
-class AudioOutputController;
-}
-
namespace service_manager {
class InterfaceProvider;
}
@@ -293,16 +289,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;

Powered by Google App Engine
This is Rietveld 408576698