| Index: chrome/renderer/pepper/pepper_uma_host.cc
|
| diff --git a/chrome/renderer/pepper/pepper_uma_host.cc b/chrome/renderer/pepper/pepper_uma_host.cc
|
| index 56ef732c6648c20bb7363e113b3b2c360281cea8..417483843899d8ab22b9410f6d384025301814a6 100644
|
| --- a/chrome/renderer/pepper/pepper_uma_host.cc
|
| +++ b/chrome/renderer/pepper/pepper_uma_host.cc
|
| @@ -120,12 +120,12 @@ bool PepperUMAHost::IsHistogramAllowed(const std::string& histogram) {
|
| }
|
|
|
| if (IsPluginWhitelisted() &&
|
| - ContainsKey(allowed_histogram_prefixes_, HashPrefix(histogram))) {
|
| + base::ContainsKey(allowed_histogram_prefixes_, HashPrefix(histogram))) {
|
| return true;
|
| }
|
|
|
| - if (ContainsKey(allowed_plugin_base_names_,
|
| - plugin_base_name_.MaybeAsASCII())) {
|
| + if (base::ContainsKey(allowed_plugin_base_names_,
|
| + plugin_base_name_.MaybeAsASCII())) {
|
| return true;
|
| }
|
|
|
|
|