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

Side by Side Diff: content/common/media/cdm_info.cc

Issue 2582463003: media: Verify CDM Host files (Closed)
Patch Set: comments addressed Created 3 years, 11 months 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
« no previous file with comments | « content/common/media/cdm_host_files.cc ('k') | content/ppapi_plugin/ppapi_thread.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/common/cdm_info.h" 5 #include "content/public/common/cdm_info.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 CdmInfo::CdmInfo(const std::string& type, 9 CdmInfo::CdmInfo(const std::string& type,
10 const base::Version& version, 10 const base::Version& version,
11 const base::FilePath& path, 11 const base::FilePath& path,
12 const std::vector<std::string>& supported_codecs) 12 const std::vector<std::string>& supported_codecs)
13 : type(type), 13 : type(type),
14 version(version), 14 version(version),
15 path(path), 15 path(path),
16 supported_codecs(supported_codecs) {} 16 supported_codecs(supported_codecs) {}
17 17
18 CdmInfo::CdmInfo(const CdmInfo& other) = default; 18 CdmInfo::CdmInfo(const CdmInfo& other) = default;
19 19
20 CdmInfo::~CdmInfo() {} 20 CdmInfo::~CdmInfo() {}
21 21
22 CdmHostFilePath::CdmHostFilePath(const base::FilePath& file_path,
23 const base::FilePath& sig_file_path)
24 : file_path(file_path), sig_file_path(sig_file_path) {}
25
26 CdmHostFilePath::~CdmHostFilePath() {}
27
22 } // namespace content 28 } // namespace content
OLDNEW
« no previous file with comments | « content/common/media/cdm_host_files.cc ('k') | content/ppapi_plugin/ppapi_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698