// 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_TEST_FAKE_ENCRYPTED_MEDIA_H_ #define MEDIA_TEST_FAKE_ENCRYPTED_MEDIA_H_ #include "base/memory/raw_ptr.h" #include "media/base/cdm_context.h" #include "media/base/content_decryption_module.h" namespace media { class AesDecryptor; // Note: Tests using this class only exercise the DecryptingDemuxerStream path. // They do not exercise the Decrypting{Audio|Video}Decoder path. class FakeEncryptedMedia { … }; } // namespace media #endif // MEDIA_TEST_FAKE_ENCRYPTED_MEDIA_H_