blob: 3dbdcdab98cdb4a1331dc35b5b2c01c3bc1e7f54 (
plain)
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
|
// Copyright 2016 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.
#include "content/public/common/cdm_info.h"
namespace content {
CdmInfo::CdmInfo(const std::string& type,
const base::Version& version,
const base::FilePath& path,
const std::vector<std::string>& supported_codecs)
: type(type),
version(version),
path(path),
supported_codecs(supported_codecs) {}
CdmInfo::CdmInfo(const CdmInfo& other) = default;
CdmInfo::~CdmInfo() {}
CdmHostFilePath::CdmHostFilePath(const base::FilePath& file_path,
const base::FilePath& sig_file_path)
: file_path(file_path), sig_file_path(sig_file_path) {}
CdmHostFilePath::~CdmHostFilePath() {}
} // namespace content
|