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

Unified Diff: content/renderer/render_frame_impl.h

Issue 2643253003: Media Remoting Clean-up: Less-redundant naming, style consistency, etc. (Closed)
Patch Set: REBASE Created 3 years, 11 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
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index 37293ac5e573940641c7ea9e0735be5a3c8fb4d1..eb9372dfa1984812342848c7d93562e4b05cf238 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -104,12 +104,15 @@ namespace media {
class CdmFactory;
class DecoderFactory;
class MediaPermission;
-class RemotingRendererController;
-class RemotingSinkObserver;
class RendererWebMediaPlayerDelegate;
class SurfaceManager;
class UrlIndex;
class WebEncryptedMediaClientImpl;
+
+namespace remoting {
+class SinkAvailabilityObserver;
+} // namespace remoting
+
} // namespace media
namespace service_manager {
@@ -1101,13 +1104,6 @@ class CONTENT_EXPORT RenderFrameImpl
void InitializeBlameContext(RenderFrameImpl* parent_frame);
-#if BUILDFLAG(ENABLE_MEDIA_REMOTING)
- // Creates the RemotingRendererController to control whether to switch to/from
- // media remoting from/to local playback.
- std::unique_ptr<media::RemotingRendererController>
- CreateRemotingRendererController();
-#endif
-
// Stores the WebLocalFrame we are associated with. This is null from the
// constructor until BindToWebFrame is called, and it is null after
// frameDetached is called until destruction (which is asynchronous in the
@@ -1253,12 +1249,14 @@ class CONTENT_EXPORT RenderFrameImpl
// Lazy-bound pointer to the RemoterFactory service in the browser
// process. Always use the GetRemoterFactory() accessor instead of this.
media::mojom::RemoterFactoryPtr remoter_factory_;
+
// An observer for the remoting sink availability that is used by
// media::RemotingCdmFactory to initialize media::RemotingSourceImpl. Created
// in the constructor of RenderFrameImpl to make sure
// media::RemotingSourceImpl be intialized with correct availability info.
// Own by media::RemotingCdmFactory after it is created.
- std::unique_ptr<media::RemotingSinkObserver> remoting_sink_observer_;
+ std::unique_ptr<media::remoting::SinkAvailabilityObserver>
+ remoting_sink_observer_;
#endif
// The CDM and decoder factory attached to this frame, lazily initialized.
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698