// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_RENDERERS_DECRYPTING_RENDERER_FACTORY_H_ #define MEDIA_RENDERERS_DECRYPTING_RENDERER_FACTORY_H_ #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "base/task/sequenced_task_runner.h" #include "media/base/media_export.h" #include "media/base/renderer_factory.h" namespace media { class MediaLog; // Simple RendererFactory wrapper class. It wraps any Renderer created by the // underlying factory, and returns it as a DecryptingRenderer. // // See DecryptingRenderer for more information. // // The caller must guarantee that the returned DecryptingRenderer will never // be initialized with a |media_resource| of type MediaResource::Type::URL. class MEDIA_EXPORT DecryptingRendererFactory final : public RendererFactory { … }; } // namespace media #endif // MEDIA_RENDERERS_DECRYPTING_RENDERER_FACTORY_H_