// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_CDM_REGISTRY_H_ #define CONTENT_PUBLIC_BROWSER_CDM_REGISTRY_H_ #include <vector> #include "content/common/content_export.h" #include "content/public/common/cdm_info.h" namespace content { struct CdmInfo; // Keeps track of the Content Decryption Modules that are available. class CONTENT_EXPORT CdmRegistry { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_CDM_REGISTRY_H_