| Index: content/public/common/webplugininfo.cc
|
| diff --git a/content/public/common/webplugininfo.cc b/content/public/common/webplugininfo.cc
|
| index 6f53d052a53dbbad3c139b5422901b6b5b18521e..b6fedb9bd0f91897d6558f27b9059196397ec409 100644
|
| --- a/content/public/common/webplugininfo.cc
|
| +++ b/content/public/common/webplugininfo.cc
|
| @@ -73,7 +73,7 @@ void WebPluginInfo::CreateVersionFromString(
|
| base::Version* parsed_version) {
|
| // Remove spaces and ')' from the version string,
|
| // Replace any instances of 'r', ',' or '(' with a dot.
|
| - std::string version = UTF16ToASCII(version_string);
|
| + std::string version = base::UTF16ToASCII(version_string);
|
| base::RemoveChars(version, ") ", &version);
|
| std::replace(version.begin(), version.end(), 'd', '.');
|
| std::replace(version.begin(), version.end(), 'r', '.');
|
|
|