OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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_PUBLIC_MEDIA_CAST_KEY_STATUS_H_ |
| 6 #define CHROMECAST_PUBLIC_MEDIA_CAST_KEY_STATUS_H_ |
| 7 |
| 8 namespace chromecast { |
| 9 namespace media { |
| 10 |
| 11 // Status of encryption key. See EME spec for details: |
| 12 // https://w3c.github.io/encrypted-media/ - not all key status values |
| 13 // are supported currently. |
| 14 enum CastKeyStatus { KEY_STATUS_USABLE = 0, KEY_STATUS_EXPIRED }; |
| 15 |
| 16 } // namespace media |
| 17 } // namespace chromecast |
| 18 |
| 19 #endif // CHROMECAST_PUBLIC_MEDIA_CAST_KEY_STATUS_H_ |
OLD | NEW |