| Index: extensions/common/message_bundle.cc
|
| diff --git a/extensions/common/message_bundle.cc b/extensions/common/message_bundle.cc
|
| index 1340e549935fade3a68f2e70dcdeac801982974e..d71513ff5affc80a8eb52114003a4c80f1ffff22 100644
|
| --- a/extensions/common/message_bundle.cc
|
| +++ b/extensions/common/message_bundle.cc
|
| @@ -281,7 +281,8 @@ bool MessageBundle::IsValidName(const std::string& name) {
|
| std::string::const_iterator it = name.begin();
|
| for (; it != name.end(); ++it) {
|
| // Allow only ascii 0-9, a-z, A-Z, and _ in the name.
|
| - if (!IsAsciiAlpha(*it) && !IsAsciiDigit(*it) && *it != '_' && *it != '@')
|
| + if (!base::IsAsciiAlpha(*it) && !base::IsAsciiDigit(*it) && *it != '_' &&
|
| + *it != '@')
|
| return false;
|
| }
|
|
|
|
|