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

Side by Side Diff: third_party/widevine/cdm/widevine_cdm_common.h

Issue 12237003: Renaming the CdmWrapper build targets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef WIDEVINE_CDM_COMMON_H_INCLUDED_ 5 #ifndef WIDEVINE_CDM_COMMON_H_INCLUDED_
6 #define WIDEVINE_CDM_COMMON_H_INCLUDED_ 6 #define WIDEVINE_CDM_COMMON_H_INCLUDED_
7 7
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 9
10 // This file defines constants common to all Widevine CDM versions. 10 // This file defines constants common to all Widevine CDM versions.
11 11
12 // "alpha" is a temporary name until a convention is defined. 12 // "alpha" is a temporary name until a convention is defined.
13 const char kWidevineKeySystem[] = "com.widevine.alpha"; 13 const char kWidevineKeySystem[] = "com.widevine.alpha";
14 14
15 const char kWidevineCdmPluginName[] = "Widevine HTML CDM"; 15 const char kWidevineCdmPluginName[] = "Widevine HTML CDM";
16 // Will be parsed as HTML. 16 // Will be parsed as HTML.
17 const char kWidevineCdmPluginDescription[] = 17 const char kWidevineCdmPluginDescription[] =
18 "This plugin enables Widevine licenses for playback of HTML audio/video " 18 "This plugin enables Widevine licenses for playback of HTML audio/video "
19 "content."; 19 "content.";
20 const char kWidevineCdmPluginMimeType[] ="application/x-ppapi-widevine-cdm"; 20 const char kWidevineCdmPluginMimeType[] ="application/x-ppapi-widevine-cdm";
21 const char kWidevineCdmPluginMimeTypeDescription[] = "Widevine HTML CDM"; 21 const char kWidevineCdmPluginMimeTypeDescription[] = "Widevine HTML CDM";
22 22
23 // File name of the plugin on different platforms. 23 // File name of the plugin on different platforms.
24 const FilePath::CharType kWidevineCdmPluginFileName[] = 24 const FilePath::CharType kWidevineCdmPluginFileName[] =
25 #if defined(OS_MACOSX) 25 #if defined(OS_MACOSX)
26 FILE_PATH_LITERAL("widevinecdmplugin.plugin"); 26 FILE_PATH_LITERAL("widevinecdmadapter.plugin");
27 #elif defined(OS_WIN) 27 #elif defined(OS_WIN)
28 FILE_PATH_LITERAL("widevinecdmplugin.dll"); 28 FILE_PATH_LITERAL("widevinecdmadapter.dll");
29 #else // OS_LINUX, etc. 29 #else // OS_LINUX, etc.
30 FILE_PATH_LITERAL("libwidevinecdmplugin.so"); 30 FILE_PATH_LITERAL("libwidevinecdmadapter.so");
31 #endif 31 #endif
32 32
33 #endif // WIDEVINE_CDM_COMMON_H_INCLUDED_ 33 #endif // WIDEVINE_CDM_COMMON_H_INCLUDED_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698