// Copyright 2017 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_CDM_LIBRARY_CDM_CDM_HOST_PROXY_IMPL_H_ #define MEDIA_CDM_LIBRARY_CDM_CDM_HOST_PROXY_IMPL_H_ #include "base/memory/raw_ptr.h" #include "media/cdm/library_cdm/cdm_host_proxy.h" namespace media { // A templated implementation of CdmHostProxy to forward Host calls to the // correct CDM Host. template <typename HostInterface> class CdmHostProxyImpl : public CdmHostProxy { … }; } // namespace media #endif // MEDIA_CDM_LIBRARY_CDM_CDM_HOST_PROXY_IMPL_H_