Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "chrome/common/widevine_cdm_constants.h" | 5 #include "chrome/common/widevine_cdm_constants.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "ppapi/shared_impl/ppapi_permissions.h" | 8 #include "ppapi/shared_impl/ppapi_permissions.h" |
| 9 | 9 |
| 10 const base::FilePath::CharType kWidevineCdmBaseDirectory[] = | 10 const base::FilePath::CharType kWidevineCdmBaseDirectory[] = |
| 11 FILE_PATH_LITERAL("WidevineCDM"); | 11 FILE_PATH_LITERAL("WidevineCDM"); |
| 12 | 12 |
| 13 const char kWidevineCdmPluginExtension[] = ""; | 13 const char kWidevineCdmPluginExtension[] = ""; |
| 14 | 14 |
| 15 const int32 kWidevineCdmPluginPermissions = ppapi::PERMISSION_DEV | | 15 const int32 kWidevineCdmPluginPermissions = ppapi::PERMISSION_DEV | |
| 16 ppapi::PERMISSION_PRIVATE; | 16 ppapi::PERMISSION_PRIVATE; |
| 17 | |
| 18 #if defined(OS_ANDROID) | |
|
ddorwin
2013/09/18 03:58:31
You can remove this now. It's not exposed anymore.
qinmin
2013/09/18 05:08:21
oops, missed it.
| |
| 19 const uint8 kWidevineUuid[16] = | |
| 20 { 0xED, 0xEF, 0x8B, 0xA9, 0x79, 0xD6, 0x4A, 0xCE, | |
| 21 0xA3, 0xC8, 0x27, 0xDC, 0xD5, 0x1D, 0x21, 0xED }; | |
| 22 #endif | |
| OLD | NEW |