| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROMECAST_RENDERER_KEY_SYSTEMS_CAST_H_ | |
| 6 #define CHROMECAST_RENDERER_KEY_SYSTEMS_CAST_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 #include <vector> | |
| 10 | |
| 11 namespace media { | |
| 12 class KeySystemProperties; | |
| 13 } | |
| 14 | |
| 15 namespace chromecast { | |
| 16 namespace shell { | |
| 17 | |
| 18 void AddChromecastKeySystems( | |
| 19 std::vector<std::unique_ptr<::media::KeySystemProperties>>* | |
| 20 key_systems_properties, | |
| 21 bool enable_persistent_license_support, | |
| 22 bool force_software_crypto); | |
| 23 | |
| 24 } // namespace shell | |
| 25 } // namespace chromecast | |
| 26 | |
| 27 #endif // CHROMECAST_RENDERER_KEY_SYSTEMS_CAST_H_ | |
| OLD | NEW |