blob: 2f28129e003de61ba24d0930788c46b7af55aab4 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://w3c.github.io/encrypted-media/#idl-def-MediaKeySystemMediaCapability
enum EncryptionScheme { "cenc", "cbcs" };
dictionary MediaKeySystemMediaCapability {
DOMString contentType = "";
DOMString robustness = "";
[RuntimeEnabled=EncryptedMediaEncryptionSchemeQuery] EncryptionScheme? encryptionScheme = null;
};