| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stdint.h> |
| 6 |
| 5 #include <string> | 7 #include <string> |
| 6 #include <vector> | 8 #include <vector> |
| 7 | 9 |
| 8 #include "base/bind.h" | 10 #include "base/bind.h" |
| 9 #include "base/debug/leak_annotations.h" | 11 #include "base/debug/leak_annotations.h" |
| 10 #include "base/json/json_reader.h" | 12 #include "base/json/json_reader.h" |
| 13 #include "base/macros.h" |
| 11 #include "base/values.h" | 14 #include "base/values.h" |
| 12 #include "media/base/cdm_callback_promise.h" | 15 #include "media/base/cdm_callback_promise.h" |
| 13 #include "media/base/cdm_config.h" | 16 #include "media/base/cdm_config.h" |
| 14 #include "media/base/cdm_key_information.h" | 17 #include "media/base/cdm_key_information.h" |
| 15 #include "media/base/decoder_buffer.h" | 18 #include "media/base/decoder_buffer.h" |
| 16 #include "media/base/decrypt_config.h" | 19 #include "media/base/decrypt_config.h" |
| 17 #include "media/base/decryptor.h" | 20 #include "media/base/decryptor.h" |
| 18 #include "media/base/mock_filters.h" | 21 #include "media/base/mock_filters.h" |
| 19 #include "media/cdm/aes_decryptor.h" | 22 #include "media/cdm/aes_decryptor.h" |
| 20 #include "media/cdm/api/content_decryption_module.h" | 23 #include "media/cdm/api/content_decryption_module.h" |
| (...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 INSTANTIATE_TEST_CASE_P(CdmAdapter, | 1012 INSTANTIATE_TEST_CASE_P(CdmAdapter, |
| 1010 AesDecryptorTest, | 1013 AesDecryptorTest, |
| 1011 testing::Values("CdmAdapter")); | 1014 testing::Values("CdmAdapter")); |
| 1012 #endif | 1015 #endif |
| 1013 | 1016 |
| 1014 // TODO(jrummell): Once MojoCdm/MojoCdmService/MojoDecryptor/ | 1017 // TODO(jrummell): Once MojoCdm/MojoCdmService/MojoDecryptor/ |
| 1015 // MojoDecryptorService are implemented, add a third version that tests the | 1018 // MojoDecryptorService are implemented, add a third version that tests the |
| 1016 // CDM via mojo. | 1019 // CDM via mojo. |
| 1017 | 1020 |
| 1018 } // namespace media | 1021 } // namespace media |
| OLD | NEW |