| Index: gpu/config/gpu_test_expectations_parser.cc
|
| diff --git a/gpu/config/gpu_test_expectations_parser.cc b/gpu/config/gpu_test_expectations_parser.cc
|
| index ef1e7f452349d45f0aae8a209dc8fdee3d582d48..b4e040393ee6e22751aa75b84bcf3e4a9b65bb20 100644
|
| --- a/gpu/config/gpu_test_expectations_parser.cc
|
| +++ b/gpu/config/gpu_test_expectations_parser.cc
|
| @@ -135,7 +135,7 @@ Token ParseToken(const std::string& word) {
|
| return kConfigGPUDeviceID;
|
|
|
| for (int32 i = 0; i < kNumberOfExactMatchTokens; ++i) {
|
| - if (LowerCaseEqualsASCII(word, kTokenData[i].name))
|
| + if (base::LowerCaseEqualsASCII(word, kTokenData[i].name))
|
| return static_cast<Token>(i);
|
| }
|
| return kTokenWord;
|
|
|