// Copyright © 2017 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
///
/// Lists the errors that can be reported during Widevine Content Decryption Module (CDM) registration.
///
public enum CdmRegistrationErrorCode
{
///
/// No error. Registration completed successfully.
///
None,
///
/// Required files or manifest contents are missing.
///
IncorrectContents,
///
/// The CDM is incompatible with the current Chromium version.
///
Incompatible,
///
/// CDM registration is not supported at this time.
///
NotSupported,
}
}