Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: chromecast/public/media/cast_key_status.h

Issue 1407253007: [Chromecast] Allow CMA backend to notify of key expiry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DCHECK for |cdm_| instead of conditional Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698