| Index: content/renderer/manifest/manifest_parser.cc
|
| diff --git a/content/renderer/manifest/manifest_parser.cc b/content/renderer/manifest/manifest_parser.cc
|
| index 7e2fc779717d2871027969185188d4c6efa4080c..44ac56f60b695a04ab6f1d6c1de02719fb1b42c6 100644
|
| --- a/content/renderer/manifest/manifest_parser.cc
|
| +++ b/content/renderer/manifest/manifest_parser.cc
|
| @@ -26,7 +26,7 @@ bool IsValidIconWidthOrHeight(const std::string& str) {
|
| if (str.empty() || str[0] == '0')
|
| return false;
|
| for (size_t i = 0; i < str.size(); ++i)
|
| - if (!IsAsciiDigit(str[i]))
|
| + if (!base::IsAsciiDigit(str[i]))
|
| return false;
|
| return true;
|
| }
|
|
|