1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51

content / common / media / cdm_info.cc [blame]

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/public/common/cdm_info.h"

#include "base/check.h"
#include "media/cdm/cdm_type.h"

namespace content {

CdmInfo::CdmInfo(const std::string& key_system,
                 Robustness robustness,
                 std::optional<media::CdmCapability> capability,
                 bool supports_sub_key_systems,
                 const std::string& name,
                 const media::CdmType& type,
                 const base::Version& version,
                 const base::FilePath& path)
    : key_system(key_system),
      robustness(robustness),
      capability(std::move(capability)),
      supports_sub_key_systems(supports_sub_key_systems),
      name(name),
      type(type),
      version(version),
      path(path) {
  DCHECK(!this->capability || !this->capability->encryption_schemes.empty());

  if (!this->capability.has_value())
    this->status = Status::kUninitialized;
}

CdmInfo::CdmInfo(const std::string& key_system,
                 Robustness robustness,
                 std::optional<media::CdmCapability> capability,
                 const media::CdmType& type)
    : CdmInfo(key_system,
              robustness,
              std::move(capability),
              /*supports_sub_key_systems=*/false,
              /*name=*/"",
              type,
              base::Version(),
              base::FilePath()) {}

CdmInfo::CdmInfo(const CdmInfo& other) = default;

CdmInfo::~CdmInfo() = default;

}  // namespace content