| Index: content/browser/renderer_host/pepper/pepper_file_system_browser_host.cc
|
| diff --git a/content/browser/renderer_host/pepper/pepper_file_system_browser_host.cc b/content/browser/renderer_host/pepper/pepper_file_system_browser_host.cc
|
| index d5f1da50f8643f5d887ce1af076e0ff1651b0c17..bdb2514007043e0d33c2d878fd72beda0ad9965f 100644
|
| --- a/content/browser/renderer_host/pepper/pepper_file_system_browser_host.cc
|
| +++ b/content/browser/renderer_host/pepper/pepper_file_system_browser_host.cc
|
| @@ -498,8 +498,8 @@ std::string PepperFileSystemBrowserHost::GeneratePluginId(
|
| // Verify |output| contains only alphabets, digits, or "._-".
|
| for (std::string::const_iterator it = output.begin(); it != output.end();
|
| ++it) {
|
| - if (!IsAsciiAlpha(*it) && !IsAsciiDigit(*it) && *it != '.' && *it != '_' &&
|
| - *it != '-') {
|
| + if (!base::IsAsciiAlpha(*it) && !base::IsAsciiDigit(*it) &&
|
| + *it != '.' && *it != '_' && *it != '-') {
|
| LOG(WARNING) << "Failed to generate a plugin id.";
|
| return std::string();
|
| }
|
|
|