Index: content/renderer/render_frame_impl.h |
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h |
index faf1288af88cf568f3eea5fc8e6a4b527900cf6a..bf67d35ff0eef62448c5a7c5c2e55601683de400 100644 |
--- a/content/renderer/render_frame_impl.h |
+++ b/content/renderer/render_frame_impl.h |
@@ -37,6 +37,7 @@ |
#include "ipc/ipc_platform_file.h" |
#include "media/blink/webmediaplayer_delegate.h" |
#include "media/blink/webmediaplayer_params.h" |
+#include "media/mojo/interfaces/remoting.mojom.h" |
#include "mojo/public/cpp/bindings/binding.h" |
#include "services/shell/public/interfaces/connector.mojom.h" |
#include "services/shell/public/interfaces/interface_provider.mojom.h" |
@@ -1009,6 +1010,7 @@ class CONTENT_EXPORT RenderFrameImpl |
shell::mojom::InterfaceProvider* GetMediaInterfaceProvider(); |
#endif |
+ media::mojom::RemoterFactory* GetRemoterFactory(); |
media::CdmFactory* GetCdmFactory(); |
media::DecoderFactory* GetDecoderFactory(); |
@@ -1163,6 +1165,10 @@ class CONTENT_EXPORT RenderFrameImpl |
media::SurfaceManager* media_surface_manager_; |
+ // Lazy-bound pointer to the RemoterFactory service in the browser |
+ // process. Always use the GetRemoterFactory() accessor instead of this. |
+ media::mojom::RemoterFactoryPtr remoter_factory_; |
+ |
#if defined(ENABLE_BROWSER_CDMS) |
// Manage all CDMs in this render frame for communicating with the real CDM in |
// the browser process. It's okay to use a raw pointer since it's a |