| 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 60baf189cfb68e99c3764ae06843a4af56b58f1d..dec42c5a7825add388e7d2d23448323708672eb1 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;
|
|
|