Commit f7e0e528 authored by xhwang's avatar xhwang Committed by Commit bot

Whitelist Widevine CDM for plugin UMA on all platforms.

Previously this is only whitelisted on Linux/ChromeOS. This CL relax this to
all platforms.

BUG=413812
TEST=Tested on Windows.

Review URL: https://codereview.chromium.org/567913002

Cr-Commit-Position: refs/heads/master@{#294663}
parent 780827b6
......@@ -21,6 +21,8 @@
#include "ppapi/host/ppapi_host.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "widevine_cdm_version.h" // In SHARED_INTERMEDIATE_DIR.
namespace {
const char* const kPredefinedAllowedUMAOrigins[] = {
......@@ -33,8 +35,11 @@ const char* const kWhitelistedHistogramPrefixes[] = {
};
const char* const kWhitelistedPluginBaseNames[] = {
"libwidevinecdmadapter.so", // see http://crbug.com/368743
"libpdf.so" // see http://crbug.com/405305
#if defined(WIDEVINE_CDM_AVAILABLE) && defined(ENABLE_PEPPER_CDMS)
kWidevineCdmAdapterFileName, // see http://crbug.com/368743
// and http://crbug.com/410630
#endif
"libpdf.so" // see http://crbug.com/405305
};
std::string HashPrefix(const std::string& histogram) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment