Commit 41c13f00 authored by Ken MacKay's avatar Ken MacKay Committed by Commit Bot

Export VideoDecoderProxy to avoid component build link errors

I am seeing component build failures on Chromecast unit tests; this CL fixes them.

Change-Id: Ia2e1cc9d17fa9ef754a74483720cf82fd5d4140e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1879318Reviewed-by: default avatarDale Curtis <dalecurtis@chromium.org>
Commit-Queue: Kenneth MacKay <kmackay@chromium.org>
Cr-Commit-Position: refs/heads/master@{#709673}
parent a18a16a4
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include "base/threading/thread_checker.h" #include "base/threading/thread_checker.h"
#include "base/unguessable_token.h" #include "base/unguessable_token.h"
#include "build/build_config.h" #include "build/build_config.h"
#include "content/common/content_export.h"
#include "media/mojo/buildflags.h" #include "media/mojo/buildflags.h"
#include "media/mojo/mojom/interface_factory.mojom.h" #include "media/mojo/mojom/interface_factory.mojom.h"
#include "mojo/public/cpp/bindings/binding_set.h" #include "mojo/public/cpp/bindings/binding_set.h"
...@@ -22,7 +23,7 @@ namespace content { ...@@ -22,7 +23,7 @@ namespace content {
// RenderProcessHostImpl. Unlike MediaInterfaceProxy, only // RenderProcessHostImpl. Unlike MediaInterfaceProxy, only
// CreateVideoDecoder() is implemented. This allows WebRTC to create // CreateVideoDecoder() is implemented. This allows WebRTC to create
// MojoVideoDecoder instances without a RenderFrame. // MojoVideoDecoder instances without a RenderFrame.
class VideoDecoderProxy : public media::mojom::InterfaceFactory { class CONTENT_EXPORT VideoDecoderProxy : public media::mojom::InterfaceFactory {
public: public:
VideoDecoderProxy(); VideoDecoderProxy();
~VideoDecoderProxy() final; ~VideoDecoderProxy() final;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment