diff options
author | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-29 17:36:05 +0000 |
---|---|---|
committer | xhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-29 17:36:05 +0000 |
commit | 720a8518ffc5e5f55d5d5e20ee49ee9d66b16f03 (patch) | |
tree | de4d7dd135ec68bf6bd15be8843bd192d491d2da /chrome/common/widevine_cdm_constants.h | |
parent | 783b22dea0148ee262c89c7a69423dc26227853f (diff) | |
download | chromium_src-720a8518ffc5e5f55d5d5e20ee49ee9d66b16f03.zip chromium_src-720a8518ffc5e5f55d5d5e20ee49ee9d66b16f03.tar.gz chromium_src-720a8518ffc5e5f55d5d5e20ee49ee9d66b16f03.tar.bz2 |
Reland r196939 "Add Widevine CDM component installer."
Fix since r196939: Move widevine_cdm_constants.* to chrome/common_constants.gyp.
TBR=brettw@chromium.org
BUG=180260
Review URL: https://codereview.chromium.org/14430004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197071 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/widevine_cdm_constants.h')
-rw-r--r-- | chrome/common/widevine_cdm_constants.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/chrome/common/widevine_cdm_constants.h b/chrome/common/widevine_cdm_constants.h new file mode 100644 index 0000000..b626079 --- /dev/null +++ b/chrome/common/widevine_cdm_constants.h @@ -0,0 +1,19 @@ +// Copyright (c) 2013 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. + +#ifndef CHROME_COMMON_WIDEVINE_CDM_CONSTANTS_H_ +#define CHROME_COMMON_WIDEVINE_CDM_CONSTANTS_H_ + +#include "base/basictypes.h" +#include "base/files/file_path.h" + +// The Widevine CDM adapter and Widevine CDM are in this directory. +extern const base::FilePath::CharType kWidevineCdmBaseDirectory[]; + +extern const char kWidevineCdmPluginExtension[]; + +// Permission bits for Widevine CDM plugin. +extern const int32 kWidevineCdmPluginPermissions; + +#endif // CHROME_COMMON_WIDEVINE_CDM_CONSTANTS_H_ |