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

Side by Side Diff: chrome/common/widevine_cdm_constants.cc

Issue 23513055: Populate canPlayType to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
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)
19 const uint8 kWidevineUuid[16] =
20 { 0xED, 0xEF, 0x8B, 0xA9, 0x79, 0xD6, 0x4A, 0xCE,
xhwang 2013/09/18 07:10:57 move { to the end of previous line. actually drop
qinmin 2013/09/18 17:19:59 dropped in PS6 On 2013/09/18 07:10:57, xhwang wrot
21 0xA3, 0xC8, 0x27, 0xDC, 0xD5, 0x1D, 0x21, 0xED };
22 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698